Stub implementation

This commit is contained in:
Kenny Daniel 2023-12-29 11:08:36 -08:00
parent 819691f51c
commit 2590cbf97b
No known key found for this signature in database
GPG Key ID: 6A3C5E318BE71391

9
src/hyparquet.ts Normal file

@ -0,0 +1,9 @@
/**
* 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')
}