UNPKG

parquets

Version:

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

13 lines (12 loc) 322 B
import * as thrift from "thrift"; export interface IIntTypeArgs { bitWidth: number; isSigned: boolean; } export declare class IntType { bitWidth: number; isSigned: boolean; constructor(args: IIntTypeArgs); write(output: thrift.TProtocol): void; static read(input: thrift.TProtocol): IntType; }