UNPKG

@loaders.gl/shapefile

Version:

Loader for the Shapefile Format

11 lines 557 B
import type { ObjectRowTableBatch, ArrayRowTableBatch } from '@loaders.gl/schema'; type RowTableBatch = ObjectRowTableBatch | ArrayRowTableBatch; /** * Zip two iterators together * * @param iterator1 * @param iterator2 */ export declare function zipBatchIterators(iterator1: AsyncIterator<RowTableBatch> | Iterator<RowTableBatch>, iterator2: AsyncIterator<RowTableBatch> | Iterator<RowTableBatch>, shape: 'object-row-table' | 'array-row-table'): AsyncGenerator<RowTableBatch, void, unknown>; export {}; //# sourceMappingURL=zip-batch-iterators.d.ts.map