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

8 lines 443 B
import MultyxList from "./list"; import MultyxObject from "./object"; import MultyxValue from "./value"; import MultyxUndefined from './undefined'; declare function IsMultyxItem(data: any): data is MultyxItem; type MultyxItem<T = any> = T extends any[] ? MultyxList : T extends object ? MultyxObject : MultyxValue; export { IsMultyxItem, MultyxList, MultyxObject, MultyxValue, MultyxItem, MultyxUndefined }; //# sourceMappingURL=index.d.ts.map