Created
September 18, 2019 20:25
-
-
Save ronnyek/ef97aba3e51c626684c9adad434cd361 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // default basic constructor required for mixins themselves | |
| export type Constructor<T> = new (...args: any[]) => T; | |
| // base class basically used as a placeholder | |
| export class ComponentRoot { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment