TypeScript/tests/baselines/reference/ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.types

29 lines
457 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/conformance/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.ts ===
module A {
>A : typeof A
2014-08-15 23:33:16 +02:00
class Point {
>Point : Point
2014-08-15 23:33:16 +02:00
x: number;
>x : number
2014-08-15 23:33:16 +02:00
y: number;
>y : number
2014-08-15 23:33:16 +02:00
}
export class points {
>points : points
2014-08-15 23:33:16 +02:00
[idx: number]: Point;
>idx : number
>Point : Point
2014-08-15 23:33:16 +02:00
[idx: string]: Point;
>idx : string
>Point : Point
2014-08-15 23:33:16 +02:00
}
}