reactant-share
Version:
A framework for building shared web applications with Reactant
21 lines • 1.26 kB
TypeScript
export * from 'reactant';
export * from 'data-transport';
export * from 'reactant-last-action';
export * from './constants';
export { createSharedApp } from './createApp';
export { PortDetector } from './modules/portDetector';
export { Router, RouterOptions, createBrowserHistory, createHashHistory, createMemoryHistory, } from './modules/router';
export { Storage, StorageOptions, REHYDRATE, getRehydrated, } from './modules/storage';
export { Coworker, CoworkerOptions, createCoworker, getCoworker, } from './modules/coworker';
export { useLock } from './lock';
export { delegate } from './delegate';
export { fork } from './fork';
export { mockPairTransports } from './mockPairTransports';
export { createBroadcastTransport } from './createTransport';
export { applyMethod } from './applyMethod';
export type { IRouterOptions } from './modules/router';
export type { ICoworkerOptions } from './modules/coworker';
export type { IStorageOptions, SetStorageOptions } from './modules/storage';
export type { Transport } from './createTransport';
export type { ClientEvents, ClientTransport, ServerEvents, ServerTransport, ISharedAppOptions, Config as SharedAppConfig, SymmetricTransport, ProxyExecParams, } from './interfaces';
//# sourceMappingURL=index.d.ts.map