File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/material/core/common-behaviors Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ type CanUpdateErrorStateCtor = Constructor<CanUpdateErrorState> &
3333
3434/** @docs -private */
3535interface HasErrorState {
36- _parentFormGroup : FormGroupDirective ;
37- _parentForm : NgForm ;
36+ _parentFormGroup : FormGroupDirective | null ;
37+ _parentForm : NgForm | null ;
3838 _defaultErrorStateMatcher : ErrorStateMatcher ;
3939
4040 // These properties are defined as per the `MatFormFieldControl` interface. Since
4141 // this mixin is commonly used with custom form-field controls, we respect the
4242 // properties (also with the public name they need according to `MatFormFieldControl`).
43- ngControl : NgControl ;
43+ ngControl : NgControl | null ;
4444 stateChanges : Subject < void > ;
4545}
4646
You can’t perform that action at this time.
0 commit comments