summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-07-04 15:28:50 +0200
committerGitHub <noreply@github.com>2023-07-04 15:28:50 +0200
commit39872646eba1160958b6edd042be905b7cf4dd0c (patch)
tree692564fa48ade42fed29ed83fac0e9967ead509f /cli/tsc
parentaaabff710f756f7dc8651b8e92e4cc5147830e49 (diff)
feat: stabilize 'alpnProtocols' setting (#19704)
Ref https://github.com/denoland/deno/issues/19685
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.unstable.d.ts35
1 files changed, 0 insertions, 35 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts
index 70731fc4e..1aa655646 100644
--- a/cli/tsc/dts/lib.deno.unstable.d.ts
+++ b/cli/tsc/dts/lib.deno.unstable.d.ts
@@ -1132,13 +1132,6 @@ declare namespace Deno {
* PEM formatted (RSA or PKCS8) private key of client certificate.
*/
privateKey?: string;
- /** **UNSTABLE**: New API, yet to be vetted.
- *
- * Application-Layer Protocol Negotiation (ALPN) protocols supported by
- * the client. If not specified, no ALPN extension will be included in the
- * TLS handshake.
- */
- alpnProtocols?: string[];
}
/** **UNSTABLE**: New API, yet to be vetted.
@@ -1190,34 +1183,6 @@ declare namespace Deno {
/** **UNSTABLE**: New API, yet to be vetted.
*
- * @category Network
- */
- export interface ListenTlsOptions {
- /** **UNSTABLE**: New API, yet to be vetted.
- *
- * Application-Layer Protocol Negotiation (ALPN) protocols to announce to
- * the client. If not specified, no ALPN extension will be included in the
- * TLS handshake.
- */
- alpnProtocols?: string[];
- }
-
- /** **UNSTABLE**: New API, yet to be vetted.
- *
- * @category Network
- */
- export interface StartTlsOptions {
- /** **UNSTABLE**: New API, yet to be vetted.
- *
- * Application-Layer Protocol Negotiation (ALPN) protocols to announce to
- * the client. If not specified, no ALPN extension will be included in the
- * TLS handshake.
- */
- alpnProtocols?: string[];
- }
-
- /** **UNSTABLE**: New API, yet to be vetted.
- *
* Acquire an advisory file-system lock for the provided file.
*
* @param [exclusive=false]