Created
November 21, 2021 04:48
-
-
Save Jtosbornex/58b9c0203d4547fdf6e237661f74aec5 to your computer and use it in GitHub Desktop.
Typescript resolve function arguments utility 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 PickFnArgs<Q> = Q extends (...args: infer P) => unknown ? P : never; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment