1
0
Fork 0
js-utils/docs/api/js-utils.maplike.md

426 B

Home > @apextoaster/js-utils > MapLike

MapLike type

A Map or dictionary object with string keys and TVal values.

Signature:

export type MapLike<TVal> = Map<string, TVal> | Dict<TVal>;

References: Dict