mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2025-09-04 11:54:06 +07:00
5 lines
112 B
TypeScript
5 lines
112 B
TypeScript
export interface IEnumMap {
|
|
[key: string]: number;
|
|
}
|
|
export declare function enumToMap(obj: any): IEnumMap;
|