TypeScript/tests/cases/compiler/internalAliasEnumInsideTopLevelModuleWithExport.ts

13 lines
211 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//@module: amd
// @declaration: true
export module a {
export enum weekend {
Friday,
Saturday,
Sunday
}
}
export import b = a.weekend;
export var bVal: b = b.Sunday;