TypeScript/tests/baselines/reference/typeAliasExport.types
2015-12-10 14:08:50 -08:00

11 lines
172 B
Plaintext

=== tests/cases/compiler/typeAliasExport.ts ===
declare module "a" {
export default 0
export var a;
>a : any
export type a = typeof a;
>a : any
>a : any
}