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

    Interface TimeValue

    Tagged value used for DuckDB TIME and TIME_NS values.

    interface TimeValue {
        kind: "time";
        unit: "micros" | "nanos";
        value: bigint;
    }
    Index

    Properties

    Properties

    kind: "time"

    Discriminator for time values.

    unit: "micros" | "nanos"

    Unit used by the stored integer value.

    value: bigint

    Time value in the specified unit since midnight.