import { CallDirection } from '@vonage/voice'; import { MessageSIPBody } from './messageSIPBody.js'; import '@vonage/messages'; /** * Standard SIP and RTC message body with direction * * @remarks This is the same body for RTC and SIP */ type MessageSIPDirectionBody = { /** * Direction of the call */ direction: CallDirection; } & MessageSIPBody; export type { MessageSIPDirectionBody };