TypeScript/tests/baselines/reference/declFileModuleWithPropertyOfTypeModule.types
2014-08-15 14:37:48 -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
}