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.

6 lines (5 loc) 258 B
import type { BatchVerificationResult, BatchVerifyParams } from './types'; /** * Verify multiple email addresses in parallel with concurrency control */ export declare function verifyEmailBatch(params: BatchVerifyParams): Promise<BatchVerificationResult>;