Files
2026-07-27 14:07:26 +08:00

8 lines
141 B
TypeScript

declare class Enum {
size: number;
constructor(map: string[] | { [member: string]: any });
[key: string]: any;
}
export = Enum;