TypeScript/tests/baselines/reference/nestedIndexer.types

12 lines
209 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/nestedIndexer.ts ===
function then(x) {
>then : (x: any) => void
>x : any
2014-08-15 23:33:16 +02:00
var match: { [index: number]: string; }
>match : { [index: number]: string; }
>index : number
2014-08-15 23:33:16 +02:00
}