fix(core): update
This commit is contained in:
parent
390ee5edb7
commit
363142392b
@ -1 +1,20 @@
|
|||||||
export type TDnsRecord = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'SRV' | 'LOC' | 'MX' | 'NS' | 'SPF';
|
export type TDnsRecordType =
|
||||||
|
| 'A'
|
||||||
|
| 'AAAA'
|
||||||
|
| 'CNAME'
|
||||||
|
| 'LOC'
|
||||||
|
| 'PTR'
|
||||||
|
| 'MX'
|
||||||
|
| 'NAPTR'
|
||||||
|
| 'NS'
|
||||||
|
| 'SOA'
|
||||||
|
| 'SPF'
|
||||||
|
| 'SRV'
|
||||||
|
| 'TXT';
|
||||||
|
|
||||||
|
export interface IDnsRecord {
|
||||||
|
chunked?: string[];
|
||||||
|
name: string;
|
||||||
|
type: TDnsRecordType;
|
||||||
|
value: string;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user