Type Alias Invert<Base, Mod>

Invert<Base, Mod>: {
    [P in keyof Mod & keyof Base]: Exclude<Base[P], Mod[P]>
}

Type Parameters

  • Base
  • Mod