UNPKG

email-misspelled

Version:

Check misspell email's domain and return a list of matching domain suggestions

10 lines (9 loc) 233 B
import type { Result } from "../typings/index.js"; export interface Corrector { (value: Result): Result; } interface CorrectorConfig { (email: string): Corrector; } export declare const corrector: CorrectorConfig; export {};