@uwdata/flechette
Version:
Fast, lightweight access to Apache Arrow data.
9 lines (8 loc) • 363 B
TypeScript
/**
* Return a batch constructor for the given data type and extraction options.
* @param {DataType} type The data type.
* @param {ExtractionOptions} options The extraction options.
*/
export function batchType(type: DataType, options?: ExtractionOptions): any;
import type { DataType } from './types.js';
import type { ExtractionOptions } from './types.js';