Defining Extra Type Aliases for Generics in TypeScript
Perhaps a dumb question, but is there a syntax for defining extra type aliases based on a generic for convenience? ex:
will suffer from "U satisfies the constraint but could be instantiated with a different type" because of the
will suffer from "U satisfies the constraint but could be instantiated with a different type" because of the
extends. I just want to have extra aliases for conveneince, not actual extra type parameters