Hex Core JS
    Preparing search index...

    Type Alias NullPartial<T>

    NullPartial: { [K in keyof T]: T[K] | null }

    Constructs a new type using the same keys as the given typeparam T, but allows null in all fields. Works similar to the built-in Partial type but with null instead of undefined. In other words, if a key of T has a value of type V, then then the corresponding key in NullPartial<T> is V | null.

    Type Parameters

    • T