UNPKG

candymail

Version:

Email Automation Library for Node.js

8 lines (7 loc) 438 B
import { Email, EmailDB } from '../../types'; declare const addEmailRow: (time: string, messageOptions: Email) => void; declare const getEmailRowsToBeSent: () => Promise<EmailDB[]>; declare const getAllEmailRows: () => Promise<EmailDB[]>; declare const setEmailSent: (id: number) => Promise<void>; declare const clearAllRows: () => Promise<void>; export { getAllEmailRows, setEmailSent, addEmailRow, getEmailRowsToBeSent, clearAllRows };