TypeScript/tests/baselines/reference/nestedIndexer.types

12 lines
209 B
Plaintext

=== tests/cases/compiler/nestedIndexer.ts ===
function then(x) {
>then : (x: any) => void
>x : any
var match: { [index: number]: string; }
>match : { [index: number]: string; }
>index : number
}