mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 20:19:29 +08:00
4 lines
112 B
Text
4 lines
112 B
Text
export interface IEnumMap {
|
|
[key: string]: number;
|
|
}
|
|
export declare function enumToMap(obj: any): IEnumMap;
|