/** Allowed Body types */
type HttpBody = BodyInit | string | Blob | ArrayBufferView | ArrayBuffer | FormData | URLSearchParams | ReadableStream<Uint8Array> | null | undefined;

export type { HttpBody };
