Created
December 12, 2024 15:36
-
-
Save dannyrb/ce21e4b93d03ae12e7663cc4bfd51cc1 to your computer and use it in GitHub Desktop.
Get Function Return Type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type Expect<T extends true> = T; | |
export type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends < | |
T, | |
>() => T extends Y ? 1 : 2 | |
? true | |
: false; | |
const myFunc = () => { | |
return "hello"; | |
}; | |
/** | |
* How do we extract MyFuncReturn from myFunc? | |
*/ | |
type MyFuncReturn = ReturnType<typeof myFunc>; | |
type tests = [Expect<Equal<MyFuncReturn, string>>]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment