Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
/**
* Defines possible values for the protocol of a {@link TunnelPort}.
*/
export declare enum TunnelProtocol {
/**
* The protocol is automatically detected. (TODO: Define detection semantics.)
*/
Auto = "auto",
/**
* Unknown TCP protocol.
*/
Tcp = "tcp",
/**
* Unknown UDP protocol.
*/
Udp = "udp",
/**
* SSH protocol.
*/
Ssh = "ssh",
/**
* Remote desktop protocol.
*/
Rdp = "rdp",
/**
* HTTP protocol.
*/
Http = "http",
/**
* HTTPS protocol.
*/
Https = "https"
}
//# sourceMappingURL=tunnelProtocol.d.ts.map