@quack-protocol/sdk - v0.1.0
    Preparing search index...

    Interface TimestampValue

    Tagged value used for DuckDB TIMESTAMP families.

    interface TimestampValue {
        kind: "timestamp";
        timezone?: "utc";
        unit: "micros" | "nanos" | "seconds" | "millis";
        value: bigint;
    }
    Index

    Properties

    kind: "timestamp"

    Discriminator for timestamp values.

    timezone?: "utc"

    Present for DuckDB TIMESTAMP WITH TIME ZONE values.

    unit: "micros" | "nanos" | "seconds" | "millis"

    Unit used by the stored integer value.

    value: bigint

    Timestamp value in the specified unit since Unix epoch.