Logical || operator (behaves like the JS one)
||
Left-hand side
Right-hand side
Boolean
import {B} from 'ts-toolbelt' type test0 = B.Or<B.True, B.False> // True type test1 = B.Or<B.True, B.True> // True type test2 = B.Or<B.Boolean, B.False> // Boolean
Logical
||
operator (behaves like the JS one)