Creates a Null type.
Example usage is shown below.
const T = Type.Null() // const T = { type: 'null' }
type T = Static<typeof T> // type T = null
Use the IsNull function to guard values of this type.
Type.IsNull(value) // value is TNull