TypeScript/tests/baselines/reference/exportsAndImports1.types
2016-09-01 14:25:44 -07:00

103 lines
1.3 KiB
Plaintext

=== tests/cases/conformance/es6/modules/t1.ts ===
var v = 1;
>v : number
>1 : 1
function f() { }
>f : () => void
class C {
>C : C
}
interface I {
>I : I
}
enum E {
>E : E
A, B, C
>A : E.A
>B : E.B
>C : E.C
}
const enum D {
>D : D
A, B, C
>A : D.A
>B : D.B
>C : D.C
}
module M {
>M : typeof M
export var x;
>x : any
}
module N {
>N : any
export interface I {
>I : I
}
}
type T = number;
>T : number
import a = M.x;
>a : any
>M : typeof M
>x : any
export { v, f, C, I, E, D, M, N, T, a };
>v : number
>f : () => void
>C : typeof C
>I : any
>E : typeof E
>D : typeof D
>M : typeof M
>N : any
>T : any
>a : any
=== tests/cases/conformance/es6/modules/t2.ts ===
export { v, f, C, I, E, D, M, N, T, a } from "./t1";
>v : number
>f : () => void
>C : typeof C
>I : any
>E : typeof E
>D : typeof D
>M : typeof M
>N : any
>T : any
>a : any
=== tests/cases/conformance/es6/modules/t3.ts ===
import { v, f, C, I, E, D, M, N, T, a } from "./t1";
>v : number
>f : () => void
>C : typeof C
>I : any
>E : typeof E
>D : typeof D
>M : typeof M
>N : any
>T : any
>a : any
export { v, f, C, I, E, D, M, N, T, a };
>v : number
>f : () => void
>C : typeof C
>I : any
>E : typeof E
>D : typeof D
>M : typeof M
>N : any
>T : any
>a : any