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

14 lines
198 B
Plaintext

=== tests/cases/compiler/declFileModuleWithPropertyOfTypeModule.ts ===
module m {
>m : typeof m
export class c {
>c : c
}
export var a = m;
>a : typeof m
>m : typeof m
}