@vonage/messages
Version:
Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS
15 lines • 411 B
TypeScript
import { MessageTextInterface } from '../MessageTextInterface';
/**
* Represents an interface for defining SMS channel text messages.
*
* @deprecated Please use types instead of interfaces.
*
* @ignore
*/
export interface SMSTextInterface extends MessageTextInterface {
/**
* The channel for SMS, which is always 'sms'.
*/
channel: 'sms';
}
//# sourceMappingURL=SMSTextInterface.d.ts.map