Type Utils
    Preparing search index...

    Type Alias Sanitize<T>

    Sanitize: Merge<
        { [K in Validators.RequiredKeys<T>]-?: T[K] },
        { [P in Validators.OptionalKeys<T>]?: Exclude<T[P], undefined> },
    >

    Type Parameters

    • T