Created
July 10, 2022 19:46
-
-
Save Voltra/d129743c6769545f72b5202a28a69045 to your computer and use it in GitHub Desktop.
types.ts
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 MethodsOf<Obj> = { | |
[Key in keyof Obj]: Obj[Key] extends (...args: unknown[]) => unknown ? Key : never; | |
}[keyof Obj]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment