UNPKG

typescript-miscellaneous

Version:
7 lines (6 loc) 161 B
export declare type Dict<Key extends Dict.Key, Value> = { [key in Key]: Value; }; export declare namespace Dict { type Key = string | number | symbol; }