@photostructure/sqlite
    Preparing search index...

    Type Alias PoolValue

    PoolValue: null | number | bigint | string | ArrayBufferView<ArrayBufferLike>

    A value that can be bound to a SQL parameter.

    JavaScript numbers bind as SQLite REAL and bigints as INTEGER, matching node:sqlite. An ArrayBufferView binds as a BLOB: only the view's own byte range is copied, and the copy is taken when the call is made, so mutating the backing buffer afterwards does not affect the query.