UNPKG

@studyportals/sp-hs-misc

Version:

Miscellaneous code used in HouseStark's projects

5 lines (4 loc) 171 B
declare class Dictionary<TKey = any, TValue = any> extends Map<TKey, TValue> { obtain(key: TKey, createDefaultValueFn: () => TValue): TValue; } export { Dictionary };