Create a Boolean type.
Example usage is shown below.
const T = Type.Boolean() // const T = { type: 'boolean' }
type T = Static<typeof T> // type T = boolean
Use the IsBoolean function to guard values of this type.
Type.IsBoolean(value) // value is TBoolean