MyExclude
MediumImplement MyExclude which excludes from union type T those types that are in U.
TypeScript•UTF-8
Run your code to see results.
Click the Run button above
MyExclude
MediumImplement MyExclude which excludes from union type T those types that are in U.
Examples:
Input 1: type Result = MyExclude<"a" | "b" | "c", "a">
Output 1: "b" | "c"
Output
Run your code to see results.