Type Alias Not<T>

Not<T>: T extends true
    ? false
    : true

Negates the passed boolean

Type Parameters

  • T extends boolean