File size: 195 Bytes
c80b461
 
 
 
 
 
 
1
2
3
4
5
6
7
declare module 'parquetjs-lite' {
    export class ParquetReader {
      static openFile(filePath: string): Promise<ParquetReader>;
      getCursor(): any;
      close(): Promise<void>;
    }
  }