TypeScript/tests/baselines/reference/importDeclarationUsedAsTypeQuery.types

18 lines
413 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/importDeclarationUsedAsTypeQuery_1.ts ===
///<reference path='importDeclarationUsedAsTypeQuery_require.ts'/>
import a = require('importDeclarationUsedAsTypeQuery_require');
>a : typeof a
2014-08-15 23:33:16 +02:00
export var x: typeof a;
>x : typeof a
>a : typeof a
2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/importDeclarationUsedAsTypeQuery_require.ts ===
export class B {
>B : B
2014-08-15 23:33:16 +02:00
id: number;
>id : number
2014-08-15 23:33:16 +02:00
}