Type alias BinaryBigInt

BinaryBigInt: bigint & {
    __meta?: ["binaryBigInt"];
}

Same as bigint but serializes to unsigned binary with unlimited size (instead of 8 bytes in most databases). Negative values will be converted to positive (abs(x)).

class Entity {
id: BinaryBigInt = 0n;
}

Generated using TypeDoc