| 14 | } |
| 15 | |
| 16 | export interface IPowerShellExtensionClient { |
| 17 | registerExternalExtension(id: string, apiVersion?: string): string; |
| 18 | unregisterExternalExtension(uuid: string): boolean; |
| 19 | getPowerShellVersionDetails( |
| 20 | uuid: string, |
| 21 | ): Promise<IExternalPowerShellDetails>; |
| 22 | waitUntilStarted(uuid: string): Promise<void>; |
| 23 | getStorageUri(): vscode.Uri; |
| 24 | getLogUri(): vscode.Uri; |
| 25 | } |
| 26 | |
| 27 | /* |
| 28 | In order to use this in a Visual Studio Code extension, you can do the following: |
no outgoing calls
no test coverage detected