@uwdata/flechette
Version:
Fast, lightweight access to Apache Arrow data.
8 lines (7 loc) • 347 B
TypeScript
/**
* Infer the data type for a given input array.
* @param {(visitor: (value: any) => void) => void} visit
* A function that applies a callback to successive data values.
* @returns {import('../types.js').DataType} The data type.
*/
export function inferType(visit: (visitor: (value: any) => void) => void): import("../types.js").DataType;