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.

6 lines 461 B
import { TtlErrorKeyType } from '../shared/constants_domain_specific'; export declare const getNumberLetterPairSeconds: (matches: [number, string][]) => number; /** @perf could keep TTL always a string */ export declare const parseTtl: <ValueType extends string | number>(valueInput: ValueType) => [number] | [number | undefined, TtlErrorKeyType]; export declare const getHasValidTtl: (value: string | number) => boolean; //# sourceMappingURL=parse_ttl.d.ts.map