UNPKG

ps2census

Version:

Client to connect to the PS2 Event Stream websocket.

7 lines (6 loc) 234 B
export interface CacheContract { put(key: string, data: any): Promise<void> | void; fetch(key: string): Promise<any | null> | any | null; forget(key: string): Promise<void> | void; forgetAll(): Promise<void> | void; }