TypeScript/tests/cases/compiler/typeAliasExport.ts

5 lines
97 B
TypeScript
Raw Normal View History

2015-12-10 23:08:50 +01:00
declare module "a" {
export default undefined
2015-12-10 23:08:50 +01:00
export var a;
export type a = typeof a;
}