Skip to content

Instantly share code, notes, and snippets.

@wolak041
Last active May 16, 2023 16:36
Show Gist options
  • Save wolak041/3169f48ccbdd50c333a3442ddad59670 to your computer and use it in GitHub Desktop.
Save wolak041/3169f48ccbdd50c333a3442ddad59670 to your computer and use it in GitHub Desktop.
type IsNumber<T> = T extends number ? true : false;
// true
type Example2 = IsNumber<100>
// false
type Example1 = IsNumber<RegExp>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment