UNPKG

@vonage/messages

Version:

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

19 lines 491 B
import { MessengerType } from '../../types'; /** * Represents an interface for defining the Messenger channel and MessengerType. * * @deprecated Please use types instead of interfaces. * * @ignore */ export interface MessengerChannelInterface { /** * The channel type, which should be 'messenger'. */ channel: 'messenger'; /** * Details about the Messenger type. */ messenger: MessengerType; } //# sourceMappingURL=MessengerChannelInterface.d.ts.map