@cityjson/flatcitybuf
    Preparing search index...

    Interface DateTimeKey

    The on-disk DateTime key shape: i64 LE UNIX seconds, then u32 LE subsecond nanos -- 12 bytes total, never a JS Date (which cannot hold nanosecond precision and cannot represent the sentinel year 9999 used by keyMax).

    interface DateTimeKey {
        nanos: number;
        seconds: bigint;
    }
    Index
    nanos: number
    seconds: bigint