UNPKG

parquets

Version:

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

13 lines (12 loc) 310 B
import * as thrift from "thrift"; export interface IKeyValueArgs { key: string; value?: string; } export declare class KeyValue { key: string; value?: string; constructor(args: IKeyValueArgs); write(output: thrift.TProtocol): void; static read(input: thrift.TProtocol): KeyValue; }