(events?: ChildEvent[])
| 23 | return snapshotChanges<T>(query, events, outsideAngularScheduler).pipe(pendingUntilEvent(injector)); |
| 24 | }, |
| 25 | stateChanges(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 | }, |
nothing calls this directly
no test coverage detected