/// /// import { isMaster, Worker } from "cluster"; import { ChildProcess } from "child_process"; import { ProxyBus, RemoteBus, IDispatcher, NoopDispatcher } from "@tandem/mesh"; export { isMaster }; export declare const fork: (family: string, localBus: IDispatcher, env?: any) => ProxyBus; export declare const createProcessBus: (family: string, proc: NodeJS.Process | Worker | ChildProcess, target: IDispatcher) => RemoteBus; export declare const hook: (family: string, localBus: IDispatcher) => NoopDispatcher;