refactor: fix undecorated classes with angular features in repo (#36921)

A few instances of undecorated classes with Angular features
have been discovered in the framework repo. This commit fixes
those.

PR Close #36921
This commit is contained in:
Paul Gschwendtner
2020-05-05 16:47:14 +02:00
committed by Alex Rickabaugh
parent 0577bf0e3e
commit e17fe90aaa
6 changed files with 15 additions and 8 deletions

View File

@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {OnDestroy, OnInit} from '@angular/core';
import {Directive, OnDestroy, OnInit} from '@angular/core';
import {FormGroup} from '../model';
@ -23,6 +23,7 @@ import {AsyncValidatorFn, ValidatorFn} from './validators';
*
* @publicApi
*/
@Directive()
export class AbstractFormGroupDirective extends ControlContainer implements OnInit, OnDestroy {
/**
* @description