MCP Apps Kit - v0.5.0
    Preparing search index...

    Type Alias DeepPartialWithNull<T>

    DeepPartialWithNull: T extends object
        ? { [P in keyof T]?: DeepPartialWithNull<T[P]>
        | null }
        : T

    Deep partial type that allows null at any level to remove/disable properties.

    • undefined: inherit from global config
    • null: explicitly disable/remove the property
    • value: override the property

    Type Parameters

    • T