Type alias SignedBinaryBigInt

SignedBinaryBigInt: bigint & {
    __meta?: ["signedBinaryBigInt"];
}

Same as bigint but serializes to signed binary with unlimited size (instead of 8 bytes in most databases). The binary has an additional leading sign byte and is represented as an uint: 255 for negative, 0 for zero, or 1 for positive.

class Entity {
id: SignedBinaryBigInt = 0n;
}

Generated using TypeDoc