Deno.KvU64

UNSTABLE: New API, yet to be vetted.

Wrapper type for 64-bit unsigned integers for use as values in a Deno.Kv.

class KvU64 {
constructor(value: bigint);
readonly value: bigint;
}

§Constructors

§
new KvU64(value: bigint)
[src]

Create a new KvU64 instance from the given bigint value. If the value is signed or greater than 64-bits, an error will be thrown.

§Properties

§
value: bigint
[src]

The value of this unsigned 64-bit integer, represented as a bigint.