(controlName: K)
| 388 | contains(this: FormGroup<{[key: string]: AbstractControl<any>}>, controlName: string): boolean; |
| 389 | |
| 390 | contains<K extends string & keyof TControl>(controlName: K): boolean { |
| 391 | return this._find(controlName)?.enabled === true; |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Sets the value of the `FormGroup`. It accepts an object that matches |