UNPKG

parquets

Version:

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

14 lines (13 loc) 394 B
import * as thrift from "thrift"; import * as TimeUnit from "./TimeUnit"; export interface ITimeTypeArgs { isAdjustedToUTC: boolean; unit: TimeUnit.TimeUnit; } export declare class TimeType { isAdjustedToUTC: boolean; unit: TimeUnit.TimeUnit; constructor(args: ITimeTypeArgs); write(output: thrift.TProtocol): void; static read(input: thrift.TProtocol): TimeType; }