385 B
385 B
Home > @apextoaster/js-utils > MapLike
MapLike type
A Map
or dictionary object with string keys and TVal
values.
Signature:
export declare type MapLike<TVal> = Map<string, TVal> | Dict<TVal>;