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

34 lines
637 B
TypeScript
Raw Normal View History

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