pmcf
Version:
Poor mans configuration management
15 lines (14 loc) • 556 B
text/typescript
export function sortZoneRecords(a: any, b: any): number;
export function dnsFullName(name: any): any;
export function dnsRecordTypeForAddressFamily(family: any): "A" | "AAAA";
export function DNSRecord(key: any, type: any, ...values: any[]): {
type: any;
key: any;
values: any[];
toString: (maxKeyLength?: number, ttl?: string) => string;
};
export function dnsFormatParameters(parameters: any): string;
export function dnsMergeParameters(a: any, b: any): {
[k: string]: Set<any>;
};
export function dnsPriority(priority: any): number;