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
@@ -0,0 +1,20 @@
/**
* Specifies the connection protocol / implementation for a tunnel.
*
* Depending on the connection mode, hosts or clients might need to use different
* authentication and connection protocols.
*/
export declare enum TunnelConnectionMode {
/**
* Connect directly to the host over the local network.
*
* While it's technically not "tunneling", this mode may be combined with others to
* enable choosing the most efficient connection mode available.
*/
LocalNetwork = "LocalNetwork",
/**
* Use the tunnel service's integrated relay function.
*/
TunnelRelay = "TunnelRelay"
}
//# sourceMappingURL=tunnelConnectionMode.d.ts.map