(v: Function | Validator)
| 28 | import type {FormField} from './form_field'; |
| 29 | |
| 30 | function isValidatorObject(v: Function | Validator): v is Validator { |
| 31 | return typeof v === 'object' && v !== null; |
| 32 | } |
| 33 | |
| 34 | export function cvaControlCreate( |
| 35 | host: ControlDirectiveHost, |
no outgoing calls
no test coverage detected
searching dependent graphs…