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.

12 lines (10 loc) 274 B
import { InputTypings } from '../parser/types_parser'; export class ParserInvalidArgumentsError extends TypeError { constructor( public type: InputTypings.SupportedRecordType, public actual: number, public expected: string | number ) { super(''); } }