Creates a Never type.
Example usage is shown below.
const T = Type.Never() // const T = {
// not: {}
// }
type T = Static<typeof T> // type T = never
Use the IsNever function to guard values of this type.
Type.IsNever(value) // value is TNever