(events?: ChildEvent[])
| 26 | return stateChanges<T>(query, events, outsideAngularScheduler).pipe(pendingUntilEvent(injector)); |
| 27 | }, |
| 28 | auditTrail(events?: ChildEvent[]) { |
| 29 | return auditTrail<T>(query, events, outsideAngularScheduler).pipe(pendingUntilEvent(injector)); |
| 30 | }, |
| 31 | valueChanges<K extends string>(events?: ChildEvent[], options?: {idField?: K}): Observable<(T & Record<string, string>)[]> { |
| 32 | const snapshotChanges$ = snapshotChanges<T>(query, events, outsideAngularScheduler); |
| 33 | return snapshotChanges$.pipe( |
nothing calls this directly
no test coverage detected