mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 01:47:53 +08:00
DOCS: Fix CAA_BUILDER parameter types (issuewild type should be string[]) (#2709)
This commit is contained in:
parent
a5a1facdaf
commit
724ce29fa2
1 changed files with 1 additions and 1 deletions
2
commands/types/dnscontrol.d.ts
vendored
2
commands/types/dnscontrol.d.ts
vendored
|
@ -411,7 +411,7 @@ declare function CAA(name: string, tag: "issue" | "issuewild" | "iodef", value:
|
||||||
*
|
*
|
||||||
* @see https://docs.dnscontrol.org/language-reference/domain-modifiers/caa_builder
|
* @see https://docs.dnscontrol.org/language-reference/domain-modifiers/caa_builder
|
||||||
*/
|
*/
|
||||||
declare function CAA_BUILDER(opts: { label?: string; iodef: string; iodef_critical?: boolean; issue: string[]; issuewild: string }): DomainModifier;
|
declare function CAA_BUILDER(opts: { label?: string; iodef: string; iodef_critical?: boolean; issue: string[]; issuewild: string[] }): DomainModifier;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* `CF_REDIRECT` uses Cloudflare-specific features ("Forwarding URL" Page Rules) to
|
* `CF_REDIRECT` uses Cloudflare-specific features ("Forwarding URL" Page Rules) to
|
||||||
|
|
Loading…
Reference in a new issue