UNPKG

@ephykal/email-utils

Version:
10 lines (7 loc) 341 B
type EmailUtilsProps = { email: string; }; declare function isEmailValid({ email }: EmailUtilsProps): boolean; declare function normalizeEmail({ email }: EmailUtilsProps): string; declare function isDisposableEmail({ email }: EmailUtilsProps): boolean; export { type EmailUtilsProps, isDisposableEmail, isEmailValid, normalizeEmail };