/// import type { PURE_METHOD } from "./PureMethod.js"; /** * 将 RequestInit 解构成 ipcRequest 的构造参数 */ export declare const $normalizeRequestInitAsIpcRequestArgs: (request_init: RequestInit) => Promise<{ method: string; body: string | Uint8Array | ReadableStream; headers: Record; }>; export declare const $bodyInitToIpcBodyArgs: (bodyInit?: BodyInit | null, onUnknown?: ((bodyInit: unknown) => Uint8Array | ReadableStream | string) | undefined) => Promise>; export declare const isWebSocket: (method: PURE_METHOD | (string & {}), headers: Headers) => boolean; //# sourceMappingURL=ipcRequestHelper.d.ts.map