Tunnel factory can return undefined (#113232)

Fixes microsoft/vscode-internalbacklog#1680
This commit is contained in:
Alex Ross
2020-12-28 09:54:08 +01:00
committed by GitHub
parent 5162c8e856
commit 4804bbcdff
7 changed files with 58 additions and 24 deletions

View File

@@ -1765,7 +1765,7 @@ export interface MainThreadThemingShape extends IDisposable {
}
export interface ExtHostTunnelServiceShape {
$forwardPort(tunnelOptions: TunnelOptions, tunnelCreationOptions: TunnelCreationOptions): Promise<TunnelDto> | undefined;
$forwardPort(tunnelOptions: TunnelOptions, tunnelCreationOptions: TunnelCreationOptions): Promise<TunnelDto | undefined>;
$closeTunnel(remote: { host: string, port: number }, silent?: boolean): Promise<void>;
$onDidTunnelsChange(): Promise<void>;
$registerCandidateFinder(): Promise<void>;