TypeScript/tests/baselines/reference/classIndexer.types

11 lines
148 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/classIndexer.ts ===
class C123 {
>C123 : C123
2014-08-15 23:33:16 +02:00
[s: string]: number;
>s : string
2014-08-15 23:33:16 +02:00
constructor() {
}
}