Libraries
    Preparing search index...

    Type Alias InferDatabaseValue<T>

    InferDatabaseValue: undefined extends T
        ? Exclude<T, undefined>
        | null
        | undefined
        : T

    Normalize a schema-inferred property type to the value shape commonly returned by database rows.

    Optional schema properties may be absent in payloads, but database rows use NULL for persisted missing values.

    Type Parameters

    • T