UNPKG

@pureweb/platform-streaming-agent

Version:

The PureWeb platform streaming agent enables your game to communicate and stream through the PureWeb Platform

12 lines (11 loc) 253 B
export declare class Bimap<K, V> { kv: Map<K, V>; vk: Map<V, K>; constructor(); set(k: K, v: V): void; delete(k: K): void; valueForKey(k: K): V; hasKey(k: K): boolean; keyForValue(v: V): K; hasValue(v: V): boolean; }