UNPKG

@dvcol/common-utils

Version:

Typescript library for common utility functions and constants

5 lines (3 loc) 204 B
/** Allowed Body types */ type HttpBody = BodyInit | string | Blob | ArrayBufferView | ArrayBuffer | FormData | URLSearchParams | ReadableStream<Uint8Array> | null | undefined; export type { HttpBody };