Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/lib.deno.d.ts>Deno.ListenTlsOptions

A JavaScript extension package for building strong and modern applications.
Latest
interface Deno.ListenTlsOptions
implements TcpListenOptions
import { type Deno } from "https://deno.land/x/ayonli_jsext@v0.9.72/lib.deno.d.ts";
const { ListenTlsOptions } = Deno;

Properties

optional
key: string

Server private key in PEM format

optional
cert: string

Cert chain in PEM format

optional
deprecated
certFile: string

Path to a file containing a PEM formatted CA certificate. Requires --allow-read.

optional
deprecated
keyFile: string

Server private key file. Requires --allow-read.

optional
transport: "tcp"
optional
alpnProtocols: string[]

Application-Layer Protocol Negotiation (ALPN) protocols to announce to the client. If not specified, no ALPN extension will be included in the TLS handshake.