UNPKG

ps2census

Version:

Client to connect to the PS2 Event Stream websocket.

11 lines (10 loc) 263 B
export declare class DecayingSet<T> { private readonly partitions; private index; private readonly set; private timeout; constructor(partitions: number, decay: number); add(value: T): this; clear(): void; has(value: T): boolean; }