feat(forms): make valueChanges and statusChanges available on abstract control directives

This commit is contained in:
Kara Erickson
2016-06-24 13:37:42 -07:00
parent 83208983b3
commit de127109f9
4 changed files with 26 additions and 2 deletions

View File

@ -50,10 +50,12 @@ export declare abstract class AbstractControlDirective {
};
path: string[];
pristine: boolean;
statusChanges: Observable<any>;
touched: boolean;
untouched: boolean;
valid: boolean;
value: any;
valueChanges: Observable<any>;
}
export declare class CheckboxControlValueAccessor implements ControlValueAccessor {