Skip to content

Instantly share code, notes, and snippets.

@ZouYouShun
Created October 23, 2022 13:05
Show Gist options
  • Save ZouYouShun/9f2bc17e5d747662b027d4f189e8144e to your computer and use it in GitHub Desktop.
Save ZouYouShun/9f2bc17e5d747662b027d4f189e8144e to your computer and use it in GitHub Desktop.
NotFunction
// 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