UNPKG

multyx

Version:

Framework designed to simplify the creation of multiplayer browser games by addressing the complexities of managing server-client communication, shared state, and input handling

5 lines (3 loc) 153 B
export type Value = string | number | boolean; export type RawObject<T=any> = { [key: string]: T }; export type Callback = (...args: any[]) => any;