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

29 lines
306 B
Plaintext

=== tests/cases/compiler/es5ExportEqualsDts.ts ===
class A {
>A : A
foo() {
>foo : () => A.B
var aVal: A.B;
>aVal : A.B
>A : any
>B : A.B
return aVal;
>aVal : A.B
}
}
module A {
>A : typeof A
export interface B { }
>B : B
}
export = A
>A : A