*Make type a string
This commit is contained in:
parent
97e45a098d
commit
9d95bb59e3
|
@ -1,5 +1,5 @@
|
||||||
export interface ResolverOptions {
|
export interface ResolverOptions {
|
||||||
type: any;
|
type: string;
|
||||||
customType?: string;
|
customType?: string;
|
||||||
options?: any;
|
options?: any;
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,6 @@ export interface DNSRecord {
|
||||||
customType?: string;
|
customType?: string;
|
||||||
value: string;
|
value: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const DNS_RECORD_TYPE = {
|
const DNS_RECORD_TYPE = {
|
||||||
DEFAULT: "DEFAULT",
|
DEFAULT: "DEFAULT",
|
||||||
A: "A",
|
A: "A",
|
||||||
|
|
Loading…
Reference in New Issue