Description
Suggestion
π Search Terms
arrow function overload
β Viability Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
β Suggestion
it seems that the syntax for overloading arrow functions are more like a side effect of existing functionality (function interfaces/intersections), rather than an intentional language feature. as a result, it doesn't really work properly in most cases - see #33482
it would be nice if there was actual syntax for arrow function overloading like there is for normal functions
π Motivating Example
const foo: {
(value: number): number
(value: string): string
} = (value) => value
this is the most basic example of an overload i can think of, yet it doesn't work:
Type '(value: string | number) => string | number' is not assignable to type '{ (value: number): number; (value: string): string; }'.
Type 'string | number' is not assignable to type 'number'.
Type 'string' is not assignable to type 'number'.(2322)
as mentioned on #33482 (comment), function interfaces have a much broader purpose than overloads, meaning it has to protect against a potentially incorrect assignment in other scenarios. but here, that's obviously not what we want
perhaps a function overload type that looks something like:
const foo: overload {
(value: number): number
(value: string): string
} = (value) => value
π» Use Cases
makes it easier to avoid using old function syntax