* List dynamic xcode-ide bridge tools from the daemon-managed bridge session.
(params?: XcodeIdeListParams)
| 298 | * List dynamic xcode-ide bridge tools from the daemon-managed bridge session. |
| 299 | */ |
| 300 | async listXcodeIdeTools(params?: XcodeIdeListParams): Promise<XcodeIdeToolListItem[]> { |
| 301 | const result = await this.request<XcodeIdeListResult>('xcode-ide.list', params); |
| 302 | return result.tools; |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * Invoke a dynamic xcode-ide bridge tool through the daemon-managed bridge session. |
no outgoing calls
no test coverage detected