Creates an Any type.
Example usage is shown below.
const T = Type.Any() // const T = {}
type T = Static<typeof T> // type T = any
Use the IsAny function to guard values of this type.
Type.IsAny(value) // value is TAny