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