Skip to main content
Module

x/evt/tools/minimal-polyfills/LightMap.ts

💧EventEmitter's typesafe replacement
Go to Latest
File
export interface LightMap<K, V> { [Symbol.toStringTag]: string; has(key: K): boolean; get(key: K): V | undefined; set(key: K, value: V): this; delete(key: K): boolean; keys(): Iterable<K>;}