TypeScript/tests/baselines/reference/es6ExportClause.types

41 lines
534 B
Plaintext

=== tests/cases/compiler/server.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