Typeutilsv0.8.6-next.0
IsAny
Returns a boolean for whether the given type is any.
https://stackoverflow.com/a/49928360/1490091
Useful in type utilities, such as disallowing anys to be passed to a function.
type IsAny<T> = 0 extends 1 & NoInfer<T> ? true : false;T
T