@microsoft/dev-tunnels-connections
Version:
Tunnels library for Visual Studio tools
15 lines • 458 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.SshKeepAliveEventArgs = void 0;
/**
* Event args raised when an SSH keep-alive succeeds or fails.
*/
class SshKeepAliveEventArgs {
constructor(count) {
this.count = count;
}
}
exports.SshKeepAliveEventArgs = SshKeepAliveEventArgs;
//# sourceMappingURL=sshKeepAliveEventArgs.js.map