UNPKG

@vonage/messages

Version:

Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS

9 lines 548 B
import { AnyMessengerParams, AnyViberParams, AnyWhatsAppParams, AnyMMSParams, SMSParams } from './Channels'; /** * Represents parameters for sending various types of messages. * This union type can be used to send messages across different platforms like * Messenger, MMS, SMS, Viber, WhatsApp, etc. * Use the corresponding Type for the specific message type you want to send. */ export type SendMessageParams = AnyMessengerParams | AnyViberParams | AnyWhatsAppParams | AnyMMSParams | SMSParams; //# sourceMappingURL=SendMessageParams.d.ts.map