co-share
Version:
A Javascript framework for easily building shared applications such as chats and games
14 lines (13 loc) • 486 B
TypeScript
import type { PathEntry, Store } from "./store";
export declare function isBrowser(): boolean;
export declare type StoreMap = Map<PathEntry, Store>;
export * from "./connection";
export * from "./store-link";
export * from "./store";
export * from "./action";
export * from "./subscriber";
export * from "./request";
export * from "./root-store";
import { RootStore } from "./root-store";
export declare function createRootStore(): RootStore;
export declare const rootStore: RootStore;