UNPKG

@emailcheck/email-validator-js

Version:

Advanced email validation with MX records, SMTP verification, disposable email detection, batch processing, and caching. Production-ready with TypeScript support.

5 lines (4 loc) 412 B
import type { Cache } from './cache-interface'; import type { DomainAgeInfo, DomainRegistrationInfo } from './types'; export declare function getDomainAge(domain: string, timeout?: number, debug?: boolean, cache?: Cache): Promise<DomainAgeInfo | null>; export declare function getDomainRegistrationStatus(domain: string, timeout?: number, debug?: boolean, cache?: Cache): Promise<DomainRegistrationInfo | null>;