Created
December 1, 2025 03:32
-
-
Save anztrax/e0e9b784e81e6d9312391e2c735a25b6 to your computer and use it in GitHub Desktop.
Simple implementation of Parameter Utils in typescript
This file contains hidden or 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
| type MyParameters<T extends (...args: any[]) => any> = T extends (...any:infer S) => any ? S: any |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment