@illavv/run_typer - v4.1.0
    Preparing search index...

    Type Alias PartialSchema<S, K>

    PartialSchema: Prettify<
        { [P in keyof S]: P extends K ? OptionalSlot<S[P]> : S[P] },
    >

    The schema partial produces: every slot optional, or only the listed ones.

    Type Parameters

    • S

      The schema to derive from

    • K extends keyof S = keyof S

      The keys to make optional; all of them by default