* Wait for a collection event
(
event: T,
timeout?: number,
)
| 976 | * Wait for a collection event |
| 977 | */ |
| 978 | public waitFor<T extends keyof AllCollectionEvents>( |
| 979 | event: T, |
| 980 | timeout?: number, |
| 981 | ) { |
| 982 | return this._events.waitFor(event, timeout) |
| 983 | } |
| 984 | |
| 985 | /** |
| 986 | * Clean up the collection by stopping sync and clearing data |
nothing calls this directly
no outgoing calls
no test coverage detected