TypeScript/tests/baselines/reference/stringIndexerAndConstructor1.js
2014-07-12 17:30:19 -07:00

8 lines
140 B
TypeScript

//// [stringIndexerAndConstructor1.ts]
interface I {
[s: string]: number;
"": string;
}
//// [stringIndexerAndConstructor1.js]