UNPKG

amazon-route-53-dns-zone-file

Version:

Makes DNS Zone File easy. Parses and validates BIND zone files and can be extended for custom features. Functionality is modular. Features are made open for extension and closed for runtime mutation. Written in TypeScript.

16 lines 653 B
import { ParserTypings } from './types_parser'; export declare class Parser implements ParserTypings.Parser { zoneObj: ParserTypings.Parser['zoneObj']; parsingMeta: ParserTypings.Parser['parsingMeta']; stack: ParserTypings.Parser['stack']; visitors: ParserTypings.Parser['visitors']; input: ParserTypings.Parser['input']; constructor($originName?: string); setText(textInput: string): this; /** * @perf can optimize this looping * @note sharing the node instance across iterations can save memory but also add confusion like React SyntheticEvent */ parse(): this; } //# sourceMappingURL=parser.d.ts.map