UNPKG

@loaders.gl/core

Version:

The core API for working with loaders.gl loaders and writers

9 lines 429 B
import type { IteratorOptions } from "./make-iterator.js"; /** * Returns an iterator that breaks a big ArrayBuffer into chunks and yields them one-by-one * @param blob ArrayBuffer to iterate over * @param options * @param options.chunkSize */ export declare function makeArrayBufferIterator(arrayBuffer: ArrayBuffer, options?: IteratorOptions): Iterable<ArrayBuffer>; //# sourceMappingURL=make-array-buffer-iterator.d.ts.map