Skip to content

Instantly share code, notes, and snippets.

@dagda1
Created February 4, 2019 22:24
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 dagda1/dd5bba752b547b99e454d8ef9aaa1ca8 to your computer and use it in GitHub Desktop.
Save dagda1/dd5bba752b547b99e454d8ef9aaa1ca8 to your computer and use it in GitHub Desktop.
type Constructor<T> = { new(...args: any[]): T };
interface Decorate<T, Decorated>{
(clazz: Constructor<T>): Constructor<T & Decorated> { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment