TypeScript/tests/baselines/reference/stringIndexerAndConstructor1.js

8 lines
140 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [stringIndexerAndConstructor1.ts]
interface I {
[s: string]: number;
"": string;
}
//// [stringIndexerAndConstructor1.js]