()
| 83 | } |
| 84 | |
| 85 | throwIfDialogOpen(): void { |
| 86 | if (this.#dialog) { |
| 87 | throw new Error( |
| 88 | `A dialog is open (${this.#dialog.type()}: ${this.#dialog.message()}).`, |
| 89 | ); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | getThirdPartyDeveloperTools(): ToolGroups { |
| 94 | return this.thirdPartyDeveloperTools; |