(timeout?: number)
| 53 | /** @inheritDoc */ |
| 54 | // @ts-expect-error - PromiseLike is a subset of Promise |
| 55 | public async flush(timeout?: number): PromiseLike<boolean> { |
| 56 | if (this.getOptions().sendClientReports) { |
| 57 | this._flushOutcomes(); |
| 58 | } |
| 59 | |
| 60 | return super.flush(timeout); |
| 61 | } |
| 62 | |
| 63 | /** @inheritDoc */ |
| 64 | // @ts-expect-error - PromiseLike is a subset of Promise |
no test coverage detected