UNPKG

overmind

Version:
12 lines (11 loc) 495 B
import { IConfiguration } from "./types.js"; import { Overmind } from "./Overmind.js"; import * as proxyStateTree from "proxy-state-tree"; //#region src/OvermindSSR.d.ts interface OvermindSSR<Config extends IConfiguration> extends Overmind<Config> { hydrate(): proxyStateTree.IMutation[]; } declare function createOvermindSSR<Config extends IConfiguration>(config: Config): OvermindSSR<Config>; //#endregion export { OvermindSSR, createOvermindSSR }; //# sourceMappingURL=OvermindSSR.d.ts.map