Skip to content

Commit

Permalink
Touch-ups
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 committed Dec 10, 2019
1 parent 9ff228c commit 309c8df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vs/vscode.proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ declare module 'vscode' {
export interface TunnelInformation {
/**
* Tunnels that are detected by the extension. The remotePort is used for display purposes.
* The localAddress should be the complete local address for connecting to the port. Tunnels provided through
* The localAddress should be the complete local address(ex. localhost:1234) for connecting to the port. Tunnels provided through
* detected are read-only from the forwarded ports UI.
*/
detected?: { remotePort: number, localAddress: string }[];
detectedTunnels?: { remotePort: number, localAddress: string }[];
}

export type ResolverResult = ResolvedAuthority & ResolvedOptions & TunnelInformation;
Expand All @@ -73,7 +73,7 @@ declare module 'vscode' {
* When not implemented, the core will use its default forwarding logic.
* When implemented, the core will use this to forward ports.
*/
forwardPort?(tunnelDescriptor: TunnelOptions): Thenable<Tunnel | undefined>;
forwardPort?(tunnelOptions: TunnelOptions): Thenable<Tunnel | undefined>;
}

export namespace workspace {
Expand Down

0 comments on commit 309c8df

Please sign in to comment.