TypeScript/tests/baselines/reference/exportsAndImports2-amd.types
2015-03-22 12:19:38 -07:00

26 lines
461 B
Text

=== tests/cases/conformance/es6/modules/t1.ts ===
export var x = "x";
>x : string
export var y = "y";
>y : string
=== tests/cases/conformance/es6/modules/t2.ts ===
export { x as y, y as x } from "./t1";
>x : string
>y : string
>y : string
>x : string
=== tests/cases/conformance/es6/modules/t3.ts ===
import { x, y } from "./t1";
>x : string
>y : string
export { x as y, y as x };
>x : string
>y : string
>y : string
>x : string