notification-services
Version:
Use email, sms and custom notification services for node.js application easily
15 lines (14 loc) • 369 B
TypeScript
export declare const messagebirdSend: (options: {
appid?: string;
apiKey?: string;
twilioAuthToken?: string;
twilioAccountSid?: string;
from?: string;
to?: string;
message?: string;
senderId?: string;
fast2smsRoute?: string;
}, callback: {
(res: any, err: any): void;
(arg0: {} | null, arg1: Error | null): void;
}) => void;