(c: AbstractControl)
| 85 | * @param c The control instance |
| 86 | */ |
| 87 | export function asyncValidatorReturningObservable(c: AbstractControl): EventEmitter<any> { |
| 88 | const e = new EventEmitter(); |
| 89 | queueMicrotask(() => { |
| 90 | e.emit({'async': true}); |
| 91 | }); |
| 92 | return e; |
| 93 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…