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

13 lines
233 B
Plaintext

=== tests/cases/compiler/augmentedTypesExternalModule1.ts ===
export var a = 1;
>a : number
>1 : number
class c5 { public foo() { } }
>c5 : c5
>foo : () => void
module c5 { } // should be ok everywhere
>c5 : typeof c5