(reports: $ReadOnlyArray<ClientReportCreationRequest>)
| 61 | } |
| 62 | |
| 63 | dispatchSendReports(reports: $ReadOnlyArray<ClientReportCreationRequest>) { |
| 64 | if (reports.length === 0) { |
| 65 | return; |
| 66 | } |
| 67 | void this.props.dispatchActionPromise( |
| 68 | sendReportsActionTypes, |
| 69 | this.sendReports(reports), |
| 70 | ); |
| 71 | } |
| 72 | |
| 73 | async sendReports( |
| 74 | reports: $ReadOnlyArray<ClientReportCreationRequest>, |
no test coverage detected