(
next: (value: LogEntry) => void,
promiseCtor: PromiseConstructorLike = Promise,
)
| 166 | } |
| 167 | |
| 168 | override forEach( |
| 169 | next: (value: LogEntry) => void, |
| 170 | promiseCtor: PromiseConstructorLike = Promise, |
| 171 | ): Promise<void> { |
| 172 | return this._observable.forEach(next, promiseCtor); |
| 173 | } |
| 174 | } |
no outgoing calls
no test coverage detected