TypeScript/tests/baselines/reference/es6ImportNamedImportInEs5.types

21 lines
777 B
Text
Raw Normal View History

=== tests/cases/compiler/es6ImportNamedImportInEs5_0.ts ===
export var a = 10;
>a : number
export var x = a;
>x : number
>a : number
export var m = a;
>m : number
>a : number
=== tests/cases/compiler/es6ImportNamedImportInEs5_1.ts ===
import { } from "es6ImportNamedImportInEs5_0";
No type information for this code.import { a } from "es6ImportNamedImportInEs5_0";
No type information for this code.import { a as b } from "es6ImportNamedImportInEs5_0";
No type information for this code.import { x, a as y } from "es6ImportNamedImportInEs5_0";
No type information for this code.import { x as z, } from "es6ImportNamedImportInEs5_0";
No type information for this code.import { m, } from "es6ImportNamedImportInEs5_0";
No type information for this code.