Traqula
    Preparing search index...

    Type Alias Patch<T, Patch>

    Patch: { [Key in keyof T]: Key extends keyof Patch ? Patch[Key] : T[Key] }

    Patch a given type by changing the value-type of a specific key in the given object type.

    Type Parameters

    • T extends object
    • Patch extends { [Key in keyof T]?: unknown }