Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@endel
Created August 7, 2019 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save endel/ab8a51889cea7b52ef144f3d5efb0b8e to your computer and use it in GitHub Desktop.
Save endel/ab8a51889cea7b52ef144f3d5efb0b8e to your computer and use it in GitHub Desktop.
Constructor of a type in TypeScript
type AConstructorTypeOf<T> = new (...args:any[]) => T;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment