(tabId: string)
| 511 | } |
| 512 | |
| 513 | async queueCloseTab(tabId: string) { |
| 514 | await this._queueActionInternal({ op: "closetab", tabId }); |
| 515 | } |
| 516 | |
| 517 | private async _queueActionInternal(entry: WindowActionQueueEntry) { |
| 518 | if (this.actionQueue.length >= 2) { |
no test coverage detected