mirror of
https://github.com/asadbek064/hyparquet.git
synced 2026-01-09 12:36:38 +00:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
/**
|
|
* Read parquet data rows from a file
|
|
*
|
|
* @param arrayBuffer parquet file contents
|
|
* @returns array of rows
|
|
*/
|
|
export function parquetRead(arrayBuffer: ArrayBuffer): any[][] {
|
|
throw new Error('not implemented')
|
|
}
|