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

21 lines
294 B
Plaintext

=== tests/cases/conformance/types/specifyingTypes/typeQueries/typeofModuleWithoutExports.ts ===
module M {
>M : typeof M
var x = 1;
>x : number
>1 : number
class C {
>C : C
foo: number;
>foo : number
}
}
var r: typeof M;
>r : typeof M
>M : typeof M