/** * Type that represents enum type */ export type Enum = Record & { [k: number]: string; }; //# sourceMappingURL=enums.d.ts.map