- enumValues<T>(enumObj: {
[key: string]: T;
}): IterableIterator<T>
-
Parameters
-
enumObj: {
[key: string]: T;
}
Returns IterableIterator<T>
- enumValues<T>(enumObj: {
[key: string]: T;
}): IterableIterator<Exclude<T, string>>
-
Type Parameters
-
T extends string | number
Parameters
-
enumObj: {
[key: string]: T;
}
Returns IterableIterator<Exclude<T, string>>
EnumValues - iterate over enum values Just copy&paste from https://github.com/microsoft/TypeScript/issues/4753#issuecomment-694557208