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

14 lines
385 B
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [@apextoaster/js-utils](./js-utils.md) &gt; [MapLike](./js-utils.maplike.md)
## MapLike type
A `Map` or dictionary object with string keys and `TVal` values.
<b>Signature:</b>
```typescript
export declare type MapLike<TVal> = Map<string, TVal> | Dict<TVal>;
```