GenerAI / worldmonitor /pro-test /src /mailcheck.d.ts
amogaddy's picture
Fix build: ripristinate blog-site/tests/e2e/pro-test/convex (referenziate dagli script di build) (part 3)
ec8acdf verified
Raw
History Blame Contribute Delete
280 Bytes
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;
}