data-cap
    Preparing search index...

    Interface NullableMarker<T>

    Produced by fields.nullable(...) -- recognized only during buildData's schema-authoring walk; the resolved runtime default is always null.

    interface NullableMarker<T> {
        "[FIELD_MARKER]": "nullable";
        inner: T;
    }

    Type Parameters

    • T
    Index
    "[FIELD_MARKER]": "nullable"

    Internal marker discriminant -- see the module doc comment.

    inner: T

    The declared inner default, kept only so the underlying type can be inferred -- never the resolved runtime value.