fix RP docs

This commit is contained in:
Thomas Limoncelli 2025-12-04 16:39:55 -05:00
parent 46393bee55
commit b06a721e71
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -3235,7 +3235,7 @@ declare function REVCOMPAT(rfc: string): string;
*
* @see https://docs.dnscontrol.org/language-reference/domain-modifiers/rp
*/
declare function RP(name: string, mbox: unknown, txt: unknown, ...modifiers: RecordModifier[]): DomainModifier;
declare function RP(name: string, mbox: string, txt: string, ...modifiers: RecordModifier[]): DomainModifier;
/**
* `SMIMEA` adds a `SMIMEA` record to a domain. The name should be the hashed and stripped local part of the e-mail.

View file

@ -7,7 +7,8 @@ parameters:
- modifiers...
parameter_types:
name: string
address: string
mbox: string
txt: string
"modifiers...": RecordModifier[]
---