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