Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/publish/netlify/api/models/dnsRecords.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type dnsRecords = Array<{
7
id?: string;
8
hostname?: string;
9
type?: string;
10
value?: string;
11
ttl?: number;
12
priority?: number;
13
dns_zone_id?: string;
14
site_id?: string;
15
flag?: number;
16
tag?: string;
17
managed?: boolean;
18
}>;
19
20