File size: 280 Bytes
ec8acdf | 1 2 3 4 5 6 7 | declare module 'mailcheck' {
interface Suggestion { address: string; domain: string; full: string; }
interface RunOpts { email: string; suggested: (s: Suggestion) => void; empty: () => void; }
const Mailcheck: { run: (opts: RunOpts) => void };
export default Mailcheck;
}
|