Skip to content

Instantly share code, notes, and snippets.

@dagda1
Created February 4, 2019 22:24
Show Gist options
  • Select an option

  • Save dagda1/dd5bba752b547b99e454d8ef9aaa1ca8 to your computer and use it in GitHub Desktop.

Select an option

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