parquets
Version:
TypeScript implementation of the Parquet file format, based on parquet.js
13 lines (12 loc) • 332 B
TypeScript
import * as thrift from "thrift";
export interface IDecimalTypeArgs {
scale: number;
precision: number;
}
export declare class DecimalType {
scale: number;
precision: number;
constructor(args: IDecimalTypeArgs);
write(output: thrift.TProtocol): void;
static read(input: thrift.TProtocol): DecimalType;
}