TypeScript/tests/baselines/reference/nestedIndexer.types

11 lines
374 B
Text

=== tests/cases/compiler/nestedIndexer.ts ===
function then(x) {
>then : (x: any) => void, Symbol(then,Decl(nestedIndexer.ts,0,0))
>x : any, Symbol(x,Decl(nestedIndexer.ts,0,14))
var match: { [index: number]: string; }
>match : { [index: number]: string; }, Symbol(match,Decl(nestedIndexer.ts,2,3))
>index : number, Symbol(index,Decl(nestedIndexer.ts,2,14))
}