TypeScript/tests/baselines/reference/es6ExportClause.types
2015-04-15 16:44:20 -07:00

41 lines
543 B
Plaintext

=== tests/cases/compiler/es6ExportClause.ts ===
class c {
>c : c
}
interface i {
>i : i
}
module m {
>m : typeof m
export var x = 10;
>x : number
>10 : number
}
var x = 10;
>x : number
>10 : number
module uninstantiated {
>uninstantiated : any
}
export { c };
>c : typeof c
export { c as c2 };
>c : typeof c
>c2 : typeof c
export { i, m as instantiatedModule };
>i : any
>m : typeof m
>instantiatedModule : typeof m
export { uninstantiated };
>uninstantiated : any
export { x };
>x : number