export type TypedIntArray = Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array; export type TypedFloatArray = Uint16Array | Float32Array | Float64Array; export type TypedArray = TypedIntArray | TypedFloatArray; export type BigTypedArray = TypedArray | BigInt64Array | BigUint64Array; export type TypedArrayConstructor = Int8ArrayConstructor | Uint8ArrayConstructor | Int16ArrayConstructor | Uint16ArrayConstructor | Int32ArrayConstructor | Uint32ArrayConstructor | Float32ArrayConstructor | Float64ArrayConstructor; export type BigTypedArrayConstructor = TypedArrayConstructor | BigInt64ArrayConstructor | BigUint64ArrayConstructor; /** Any numeric array: typed array or `number[]` */ export type NumberArray = number[] | TypedArray; export type NumericArray = number[] | TypedArray; export type FetchLike = (url: string, options?: RequestInit) => Promise; /** * Transformation callback used by batch parsers to reshape streamed binary chunks. * Accepts iterables of `ArrayBuffer`, `ArrayBufferView`, or `ArrayBufferLike` values and * returns an async iterable of the same surface. */ export type TransformBatches = (asyncIterator: AsyncIterable | Iterable) => AsyncIterable; /** Types that can be synchronously parsed */ export type SyncDataType = string | ArrayBufferLike | ArrayBufferView; /** Types that can be parsed async */ export type DataType = string | ArrayBufferLike | ArrayBufferView | File | Blob | Response | ReadableStream | Iterable | AsyncIterable; /** Types that can be parsed in batches */ export type BatchableDataType = DataType | Iterable | AsyncIterable | Promise>; //# sourceMappingURL=types.d.ts.map