UNPKG

@uwdata/flechette

Version:

Fast, lightweight access to Apache Arrow data.

8 lines (7 loc) 347 B
/** * 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;