arquero
Version:
Query processing and transformation of array-backed data tables.
8 lines (7 loc) • 347 B
TypeScript
/**
* Return a Promise to a ReadableStream of text for a given file/url path.
* @param {string} path The file or URL path
* @param {import('../types.js').LoadOptions} options
* @returns {Promise<ReadableStream<string>>}
*/
export function textStream(path: string, options: import("../types.js").LoadOptions): Promise<ReadableStream<string>>;