Created
October 23, 2022 13:05
-
-
Save ZouYouShun/9f2bc17e5d747662b027d4f189e8144e to your computer and use it in GitHub Desktop.
NotFunction
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
// eslint-disable-next-line @typescript-eslint/ban-types | |
export type NotFunction<T> = T extends Function ? never : T; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment