Any compatible Long instance. This is a minimal stand-alone definition of a Long instance. The actual type is that exported by long.js.

interface Long {
    high: number;
    low: number;
    unsigned: boolean;
}

Properties

Properties

high: number

High bits

low: number

Low bits

unsigned: boolean

Whether unsigned or not