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/dnsRecordCreate.ts
6467 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type dnsRecordCreate = {
7
type?: string;
8
hostname?: string;
9
value?: string;
10
ttl?: number;
11
priority?: number;
12
weight?: number;
13
port?: number;
14
flag?: number;
15
tag?: string;
16
};
17
18