UNPKG

ts-zone-file

Version:

This module is designed for manaing a BIND name server.

5 lines (4 loc) 323 B
import { ZONE, MXRECORD, CAARecord } from './types'; export declare const generateZoneFile: (zone: ZONE) => Promise<string>; export declare const processPREFOBJ: ([key, a]: [string, MXRECORD[]]) => Promise<Promise<void>[]>; export declare const processCAAOBJ: ([key, a]: [string, CAARecord[]]) => Promise<Promise<void>[]>;