augment-vir - v31.25.0
    Preparing search index...

    Type Alias SetOptionalWithUndefined<OriginalObjectGeneric, OptionalKeysGeneric>

    SetOptionalWithUndefined: Simplify<
        Except<OriginalObjectGeneric, OptionalKeysGeneric> & {
            [PropKey in OptionalKeysGeneric]?: OriginalObjectGeneric[PropKey]
        },
    >

    Sets a key as optional but also potentially undefined.

    Type Parameters