TypeScript/tests/cases/compiler/ambientEnum1.ts

8 lines
150 B
TypeScript
Raw Normal View History

declare enum E1 {
y = 4.23
}
// Ambient enum with computer member
declare enum E2 {
x = 'foo'.length
}