import "../types.mjs"; //#region src/upload-relay/client.d.ts type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; type UploadRelayClientOptions = { host: string; /** * An optional custom fetch function. * * If not provided, defaults to the global `fetch` function (`globalThis.fetch`). * * @default globalThis.fetch */ fetch?: Fetch; /** * An optional timeout for requests. * @default 30_000ms (30 seconds) */ timeout?: number; /** * Callback for individual network errors. */ onError?: (error: Error) => void; }; //#endregion export { UploadRelayClientOptions }; //# sourceMappingURL=client.d.mts.map