UNPKG

airline-ccai-fulfillment-tools-test

Version:

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

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