2020-03-29 13:43:52 +00:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [@apextoaster/js-utils](./js-utils.md) > [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>;
|
|
|
|
```
|
2020-12-29 05:29:39 +00:00
|
|
|
<b>References:</b> [Dict](./js-utils.dict.md)
|
|
|
|
|