Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DnsUpdates

import type { DnsUpdates } from "https://googleapis.deno.dev/v1/firebasehosting:v1.ts";

A set of DNS record updates that you should make to allow Hosting to serve secure content in response to requests against your domain name. These updates present the current state of your domain name's DNS records when Hosting last queried them, and the desired set of records that Hosting needs to see before your custom domain can be fully active.

interface DnsUpdates {
checkTime?: Date;
desired?: DnsRecordSet[];
discovered?: DnsRecordSet[];
}

§Properties

§
checkTime?: Date
[src]

The last time Hosting checked your custom domain's DNS records.

§
desired?: DnsRecordSet[]
[src]

The set of DNS records Hosting needs to serve secure content on the domain.

§
discovered?: DnsRecordSet[]
[src]

The set of DNS records Hosting discovered when inspecting a domain.