arquero
Version:
Query processing and transformation of array-backed data tables.
17 lines (16 loc) • 619 B
TypeScript
/**
* Create a table from delimited text rows.
* @param {string} input
* @param {Transformer[]} transformers
* @param {*} [options]
* @returns {ColumnTable}
*/
export function parseTextRowsSync(input: string, transformers: Transformer[], options?: any): ColumnTable;
/**
* Create a table from a stream of delimited text rows.
* @param {ReadableStream<string>} input
* @param {*} [options]
* @returns {Promise<ColumnTable>}
*/
export function parseTextRowsStream(input: ReadableStream<string>, transformers: any, options?: any): Promise<ColumnTable>;
import { ColumnTable } from '../../table/ColumnTable.js';