@brimdata/zealot
Version:
The Javascript Client for Zed Lakes
10 lines (9 loc) • 315 B
TypeScript
import { TypeInt64 } from "../types/type-int64";
import { Primitive } from "./primitive";
import { JSOptions } from "./types";
export declare class Int64 extends Primitive {
type: typeof TypeInt64;
toInt(): number | null;
toBigInt(): bigint | null;
toJS(opts?: JSOptions): number | bigint | null;
}