summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.deno.unstable.d.ts')
-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]