kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/typescript/testdata/typeof.ts (about) 1 export {}; 2 3 //- @obj defines/binding Obj 4 const obj = { 5 a: '' 6 }; 7 8 // Verify that a reference within a 'typeof' clause refers to the value. 9 //- @obj ref Obj 10 const user: typeof obj = { 11 a: '' 12 };