UNPKG

parquets

Version:

TypeScript implementation of the Parquet file format, based on parquet.js

16 lines (15 loc) 470 B
import Int64 = require("node-int64"); import * as thrift from "thrift"; export interface IPageLocationArgs { offset: number | Int64; compressed_page_size: number; first_row_index: number | Int64; } export declare class PageLocation { offset: Int64; compressed_page_size: number; first_row_index: Int64; constructor(args: IPageLocationArgs); write(output: thrift.TProtocol): void; static read(input: thrift.TProtocol): PageLocation; }