Logical ! operator (behaves like the JS one)
!
to negate
Boolean
import {B} from 'ts-toolbelt' type test0 = B.Not<B.True> // False type test1 = B.Not<B.False> // True
Logical
!
operator (behaves like the JS one)