Hello again. Today's question is about typing function with two arguments being union type. The goal is to block possibility to pass mixed types into arguments, so if the first argument is a number
then second also needs to be number
, in other words there is dependency between arguments which we need to write.
function f(a: string | number, b: string | number) {
if (typeof a === 'string') {
return a + ':' + b; // no error but b can be number!
} else {
return a + b; // error as b can be number | string
}
}
f(2, 3); // correct usage
f(1, 'a'); // should be error
f('a', 2); // should be error
f('a', 'b') // correct usage
The whole code can be found in the playground
There is not one possibility of correct typing, can you solve this puzzle in many ways? Is it possible to type it without using type assertions? Post your answers in comments. Yes you can change the implementation also, the key is to have the same behavior + type safety. Have fun! Answer will be published soon!
This series is just starting. If you want to know about new exciting questions from advanced TypeScript please follow me on dev.to and twitter.
Top comments (7)
A quick idea -
Playground link
Nice, thanks but your code still doesn't compile, can you make a version which compiles? - Playground
Updated the answer :)
Now the interface of the function works in reverse way, what is correct is incorrect 😉
If i understood it correct, we are not allowed to change implementation of the method, just introduce types to make it work, right ?
Yes, implementation of the value level can stay, but assertion like
as X
is a type level. Currently implementation cannot compile because of lack of proper typing, there is a way to solve it without any assertion that is why I left it as it is, so with compile error.You can modify the implementation, the key is to have it working as original + typed safe.
Another great challenge! I thought it'd be rather straight forward, but I've been sitting on this for at least 30 minutes and I don't have a solution yet. I'll give it another go tomorrow :)