/** * EnumValues - iterate over enum values * Just copy&paste from https://github.com/microsoft/TypeScript/issues/4753#issuecomment-694557208 * * @param enumObj */ export declare function enumValues(enumObj: { [key: string]: T; }): IterableIterator; export declare function enumValues(enumObj: { [key: string]: T; }): IterableIterator>;