TypeScript/tests/baselines/reference/declarationEmitDefaultExport6.types

9 lines
262 B
Plaintext
Raw Normal View History

2015-03-18 01:05:30 +01:00
=== tests/cases/compiler/declarationEmitDefaultExport6.ts ===
export class A {}
2015-04-13 23:01:57 +02:00
>A : A, Symbol(A, Decl(declarationEmitDefaultExport6.ts, 0, 0))
2015-03-18 01:05:30 +01:00
export default new A();
>new A() : A
2015-04-13 23:01:57 +02:00
>A : typeof A, Symbol(A, Decl(declarationEmitDefaultExport6.ts, 0, 0))
2015-03-18 01:05:30 +01:00