@uwdata/mosaic-core
Version:
Scalable and extensible linked data views.
12 lines • 551 B
TypeScript
import type { ExtractionOptions, Table } from '@uwdata/flechette';
/**
* Decode Arrow IPC bytes to a table instance.
* The default options map date and timestamp values to JS Date objects.
* @param data Arrow IPC bytes.
* @param options Arrow IPC extraction options.
* If unspecified, the default options will extract date and timestamp
* values to JS Date objects.
* @returns A table instance.
*/
export declare function decodeIPC(data: ArrayBuffer | Uint8Array, options?: ExtractionOptions): Table;
//# sourceMappingURL=decode-ipc.d.ts.map