mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-20 21:48:22 +02:00
4 lines
112 B
TypeScript
4 lines
112 B
TypeScript
export interface IEnumMap {
|
|
[key: string]: number;
|
|
}
|
|
export declare function enumToMap(obj: any): IEnumMap;
|