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) 260 B
import type { BatchVerificationResult, IBatchVerifyParams } from './types'; /** * Verify multiple email addresses in parallel with concurrency control */ export declare function verifyEmailBatch(params: IBatchVerifyParams): Promise<BatchVerificationResult>;