Type alias Without<T, U>

Without<T, U>: {
    [P in Exclude<keyof T, keyof U>]?: never
}

Type Parameters

  • T

  • U