hf-public-data-insights / @types /parquetjs-lite.d.ts
Xianbao QIAN
use client side rendering for the homepage.
c80b461
raw
history blame
195 Bytes
declare module 'parquetjs-lite' {
export class ParquetReader {
static openFile(filePath: string): Promise<ParquetReader>;
getCursor(): any;
close(): Promise<void>;
}
}