(count: number)
| 1342 | chatEntity as any, |
| 1343 | myId, |
| 1344 | count, |
| 1345 | topicRootId |
| 1346 | ) |
| 1347 | : await quickDeleteMyMessages( |
| 1348 | client, |
| 1349 | chatEntity as any, |
| 1350 | myId, |
| 1351 | count, |
| 1352 | topicRootId |
| 1353 | ); |
| 1354 | |
| 1355 | let result = { processedCount: 0, actualCount: 0, editedCount: 0 }; |
| 1356 | |
| 1357 | if (!shouldRunInRounds) { |
| 1358 | result = await runOneRound(requestedTotalCount); |
| 1359 | } else { |
| 1360 | let remaining = requestedTotalCount; |
| 1361 | let round = 1; |
| 1362 | while (remaining > 0) { |
no test coverage detected