UNPKG

args-any

Version:

Utility lib for parsing command options

13 lines (12 loc) 454 B
export declare class ReadonlyMap<K, V> implements ReadonlyMap<K, V> { private map; constructor(map: Map<K, V>); get(key: K): V | undefined; forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void; has(key: K): boolean; get size(): number; [Symbol.iterator](): IterableIterator<[K, V]>; entries(): IterableIterator<[K, V]>; keys(): IterableIterator<K>; values(): IterableIterator<V>; }