Outlook_Addin_LLM/node_modules/@microsoft/dev-tunnels-contracts/tunnelConnectionMode.d.ts

20 lines
682 B
TypeScript

/**
* 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