Negates a type.
type NotNumber<Type> = Not<number, Type>;const notNumber: NotNumber<string | number> = "🟢";
Negates a type.
Example