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) 238 B
import { TItemText, SIZES } from '../../types'; interface ITextItemInput { title?: string; width?: SIZES; data: string; } export declare const createTextItem: ({ title, width, data, }: ITextItemInput) => TItemText; export {};