14 lines
385 B
Markdown
14 lines
385 B
Markdown
|
<!-- 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>;
|
||
|
```
|