Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/ext/net/lib.deno_net.d.ts>Deno.ListenTlsOptions

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Deno.ListenTlsOptions
implements TcpListenOptions
import { type Deno } from "https://deno.land/x/deno@v1.29.0/ext/net/lib.deno_net.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"