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