mirror of
https://github.com/egor-tensin/cleanup-path.git
synced 2025-05-08 01:09:31 +03:00
4 lines
112 B
TypeScript
4 lines
112 B
TypeScript
export interface IEnumMap {
|
|
[key: string]: number;
|
|
}
|
|
export declare function enumToMap(obj: any): IEnumMap;
|