UNPKG

airline-ccai-fulfillment-tools-test

Version:

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

9 lines (8 loc) 226 B
import { TCard, TItems, SIZES } from '../types'; interface ICardInput { items: TItems[]; width?: SIZES; title?: string; } export declare const createCard: ({ items, width, title }: ICardInput) => TCard; export {};