UNPKG

qed-mail

Version:

📮 A NodeJS library for checking if an email address exists without sending any email.

7 lines • 294 B
import { checkMX } from "./mx"; import { checkSMTP } from "./smtp"; import { checkSyntax } from "./syntax"; import { Result } from "./types"; declare function checkEmail(email: string): Promise<Result>; export { checkEmail, checkMX, checkSMTP, checkSyntax }; //# sourceMappingURL=index.d.ts.map