notification-services
Version:
Use email, sms and custom notification services for node.js application easily
15 lines (14 loc) • 357 B
TypeScript
export declare const streamConfig: () => void;
export declare const streamSend: (mailOptions: {
from?: string;
to?: string;
cc?: string;
bcc?: string;
subject?: string;
text?: string;
html?: string;
attachments?: [];
}, callback: {
(res: any, err: any): void;
(arg0: {} | null, arg1: Error | null): void;
}) => void;