Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SplitInt64

import type { SplitInt64 } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A representation of an int64, n, that is immune to precision loss when encoded in JSON.

interface SplitInt64 {
highBits?: number;
lowBits?: number;
}

§Properties

§
highBits?: number
[src]

The high order bits, including the sign: n >> 32.

§
lowBits?: number
[src]

The low order bits: n & 0xffffffff.