(isFormGroup: boolean, key: string | number)
| 155 | } |
| 156 | |
| 157 | export function missingControlError(isFormGroup: boolean, key: string | number): string { |
| 158 | return `Cannot find form control ${describeKey(isFormGroup, key)}`; |
| 159 | } |
| 160 | |
| 161 | export function missingControlValueError(isFormGroup: boolean, key: string | number): string { |
| 162 | return `Must supply a value for form control ${describeKey(isFormGroup, key)}`; |
no test coverage detected
searching dependent graphs…