TypeScript/tests/baselines/reference/augmentedTypesExternalModule1.types

13 lines
233 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/augmentedTypesExternalModule1.ts ===
export var a = 1;
>a : number
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
class c5 { public foo() { } }
>c5 : c5
>foo : () => void
2014-08-15 23:33:16 +02:00
module c5 { } // should be ok everywhere
>c5 : typeof c5
2014-08-15 23:33:16 +02:00