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.

8 lines (7 loc) 327 B
import type { FreeEmailCheckParams } from './types'; /** * Check whether the email's domain is on the bundled free-provider list. * Result is rich-cached (`FreeEmailResult`) so repeated calls hit a Set * lookup behind a CacheStore<T>. */ export declare function isFreeEmail(params: FreeEmailCheckParams): Promise<boolean>;