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

19 lines
325 B
JavaScript

//// [ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.ts]
module A {
interface Point {
x: number;
y: number;
}
export interface points {
[idx: number]: Point;
[idx: string]: Point;
}
}
//// [ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.js]