Skip to main content
Module

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

💧EventEmitter's typesafe replacement
Go to Latest
File
export interface LightSet<T> { [Symbol.toStringTag]: string; has(value: T): boolean; add(value: T): this; values(): Iterable<T>; delete(value: T): boolean;}