import type { $IpcError } from "./IpcError.js"; import type { $IpcEvent } from "./IpcEvent.js"; import type { $IpcFork } from "./IpcFork.js"; import type { $IpcLifecycle } from "./IpcLifecycle.js"; import type { $IpcRawRequest, IpcClientRequest, IpcServerRequest } from "./IpcRequest.js"; import type { $IpcRawResponse, IpcResponse } from "./IpcResponse.js"; import type { $IpcStream } from "./stream/IpcStream.js"; /** 发送的消息 */ export type $IpcRawMessage = $IpcRawRequest | $IpcRawResponse | $IpcEvent | $IpcStream | $IpcError | $IpcLifecycle | $IpcFork; export type $IpcMessage = IpcClientRequest | IpcServerRequest | IpcResponse | $IpcEvent | $IpcStream | $IpcError | $IpcLifecycle | $IpcFork; //# sourceMappingURL=IpcMessage.d.ts.map