summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorCraig Morten <cmorten@users.noreply.github.com>2022-05-15 15:43:08 +0100
committerGitHub <noreply@github.com>2022-05-15 16:43:08 +0200
commit38e0a2ec1b05ef23fe34f9b4ea8ccc16536266ce (patch)
tree928f580c708620112f57f30b57cc18b59e1bab74 /cli/dts/lib.deno.ns.d.ts
parentf5c31b56e3fb57a92dbaaec17690bfa9d787164e (diff)
feat(ext/net): support full `SOA` record interface (#14617)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/dts/lib.deno.ns.d.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts
index f7dc778c3..8ed0ab83e 100644
--- a/cli/dts/lib.deno.ns.d.ts
+++ b/cli/dts/lib.deno.ns.d.ts
@@ -2983,6 +2983,11 @@ declare namespace Deno {
export interface SOARecord {
mname: string;
rname: string;
+ serial: number;
+ refresh: number;
+ retry: number;
+ expire: number;
+ minimum: number;
}
/** If `resolveDns` is called with "SRV" record type specified, it will return an array of this interface. */
@@ -3044,5 +3049,5 @@ declare namespace Deno {
query: string,
recordType: RecordType,
options?: ResolveDnsOptions,
- ): Promise<string[] | MXRecord[] | SRVRecord[] | string[][]>;
+ ): Promise<string[] | MXRecord[] | SOARecord[] | SRVRecord[] | string[][]>;
}