UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

10 lines (9 loc) 319 B
import { TypeUint64 } from "../types/type-uint64"; import { Primitive } from "./primitive"; import { JSOptions } from "./types"; export declare class Uint64 extends Primitive { type: typeof TypeUint64; toInt(): number | null; toBigInt(): bigint | null; toJS(opts?: JSOptions): number | bigint | null; }