export { H as HttpRequestEventMap, I as IS_PATCHED_MODULE, R as RequestCredentials } from './glossary-1c204f45.js'; import { I as Interceptor, E as ExtractEventNames } from './Interceptor-af98b768.js'; export { c as INTERNAL_REQUEST_ID_HEADER_NAME, a as InterceptorEventMap, e as InterceptorReadyState, b as InterceptorSubscription, d as deleteGlobalSymbol, g as getGlobalSymbol } from './Interceptor-af98b768.js'; import { EventMap, Listener } from 'strict-event-emitter'; import '@open-draft/deferred-promise'; import '@open-draft/logger'; interface BatchInterceptorOptions>> { name: string; interceptors: InterceptorList; } type ExtractEventMapType>> = InterceptorList extends ReadonlyArray ? InterceptorType extends Interceptor ? EventMap : never : never; /** * A batch interceptor that exposes a single interface * to apply and operate with multiple interceptors at once. */ declare class BatchInterceptor>, Events extends EventMap = ExtractEventMapType> extends Interceptor { static symbol: symbol; private interceptors; constructor(options: BatchInterceptorOptions); protected setup(): void; on>(event: EventName, listener: Listener): this; once>(event: EventName, listener: Listener): this; off>(event: EventName, listener: Listener): this; removeAllListeners>(event?: EventName | undefined): this; } /** * Generate a random ID string to represent a request. * @example * createRequestId() * // "f774b6c9c600f" */ declare function createRequestId(): string; /** * Removes query parameters and hashes from a given URL. */ declare function getCleanUrl(url: URL, isAbsolute?: boolean): string; declare function encodeBuffer(text: string): Uint8Array; declare function decodeBuffer(buffer: ArrayBuffer, encoding?: string): string; /** * Returns a boolean indicating whether the given response status * code represents a response that cannot have a body. */ declare function isResponseWithoutBody(status: number): boolean; export { BatchInterceptor, BatchInterceptorOptions, ExtractEventMapType, ExtractEventNames, Interceptor, createRequestId, decodeBuffer, encodeBuffer, getCleanUrl, isResponseWithoutBody };