UNPKG

@microsoft/dev-tunnels-ssh-tcp

Version:

SSH TCP extensions library for Dev Tunnels

14 lines 570 B
import { Event } from 'vscode-jsonrpc'; import { SshStream } from '@microsoft/dev-tunnels-ssh'; import { RemotePortConnector } from './remotePortConnector'; /** * Receives SSH channels forwarded from a remote port and exposes them as streams. */ export declare class RemotePortStreamer extends RemotePortConnector { private readonly streamOpenedEmitter; /** * Event raised when a new connection stream is forwarded from the remote port. */ readonly onStreamOpened: Event<SshStream>; } //# sourceMappingURL=remotePortStreamer.d.ts.map