UNPKG

twilio-ccai-fulfillment-tools

Version:

A collection of tools to assist in the creation of Twilio CCAI Integration cards via fulfillment scripts

19 lines (16 loc) 329 B
import { TItemImage, ITEMS, SIZES } from '../../types'; interface IImageItemInput { title?: string; width?: SIZES; data: string; } export const createImageItem = ({ title, width, data, }: IImageItemInput): TItemImage => ({ type: ITEMS.IMAGE, title, width: width ?? SIZES.FULL, data, });