TypeScript/tests/baselines/reference/importDeclarationUsedAsTypeQuery.types
2014-08-15 14:37:48 -07:00

18 lines
599 B
Plaintext

=== tests/cases/compiler/importDeclarationUsedAsTypeQuery_1.ts ===
///<reference path='importDeclarationUsedAsTypeQuery_require.ts'/>
import a = require('importDeclarationUsedAsTypeQuery_require');
>a : typeof "tests/cases/compiler/importDeclarationUsedAsTypeQuery_require"
export var x: typeof a;
>x : typeof "tests/cases/compiler/importDeclarationUsedAsTypeQuery_require"
>a : typeof "tests/cases/compiler/importDeclarationUsedAsTypeQuery_require"
=== tests/cases/compiler/importDeclarationUsedAsTypeQuery_require.ts ===
export class B {
>B : B
id: number;
>id : number
}