TypeScript/tests/baselines/reference/ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.types
2015-04-15 16:44:20 -07:00

29 lines
457 B
Plaintext

=== tests/cases/conformance/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.ts ===
module A {
>A : typeof A
class Point {
>Point : Point
x: number;
>x : number
y: number;
>y : number
}
export class points {
>points : points
[idx: number]: Point;
>idx : number
>Point : Point
[idx: string]: Point;
>idx : string
>Point : Point
}
}