Revert "feat(compiler): allow selector-less directives as base classes (#31379)" (#32089)

This reverts commit f90c7a9df0 due to breakages in G3.

PR Close #32089
This commit is contained in:
Kara Erickson
2019-08-09 18:17:09 -07:00
parent 753080133b
commit 37de490e23
5 changed files with 12 additions and 71 deletions

View File

@ -297,8 +297,8 @@ export interface Directive {
export declare const Directive: DirectiveDecorator;
export interface DirectiveDecorator {
(obj?: Directive): TypeDecorator;
new (obj?: Directive): Directive;
(obj: Directive): TypeDecorator;
new (obj: Directive): Directive;
}
export interface DoBootstrap {