summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
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[][]>;
}