Type Alias Or<A, B>

Or<A, B>: IfExtends<true, A | B>

Type alias that represents the logical OR operation between two boolean types.

Type Parameters

  • A extends boolean

    The first boolean type.

  • B extends boolean

    The second boolean type.