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

    Type Alias RemoveUndefinedValues<ObjectGeneric>

    RemoveUndefinedValues: {
        [Key in ExcludeKeysWithMatchingValues<ObjectGeneric, undefined>]: ObjectGeneric[Key]
    } & {
        [Key in ExtractKeysWithMatchingValues<ObjectGeneric, undefined>]?: Exclude<
            ObjectGeneric[Key],
            undefined,
        >
    }

    Converts any optionally undefined keys to partials with non-undefined values. This does not exclude null.

    Type Parameters

    • ObjectGeneric