UNPKG

twilio-ccai-fulfillment-tools

Version:

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

9 lines (8 loc) 243 B
import { TItemImage, SIZES } from '../../types'; interface IImageItemInput { title?: string; width?: SIZES; data: string; } export declare const createImageItem: ({ title, width, data, }: IImageItemInput) => TItemImage; export {};