TypeScript/tests/cases/compiler/internalAliasEnum.ts
2014-07-12 17:30:19 -07:00

14 lines
204 B
TypeScript

// @declaration: true
module a {
export enum weekend {
Friday,
Saturday,
Sunday
}
}
module c {
import b = a.weekend;
export var bVal: b = b.Sunday;
}