UNPKG

twilio-ccai-fulfillment-tools

Version:

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

11 lines (10 loc) 284 B
import { TIframe, SIZES } from '../types'; interface IIframeInput { width?: SIZES; position?: number; height: string; url: string; title?: string; } export declare const createIframe: ({ width, height, url, title, position, }: IIframeInput) => TIframe; export {};