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) 237 B
import { TDetail, TItems, SIZES } from '../types'; interface IDetailInput { items: TItems[]; width?: SIZES; title?: string; } export declare const createDetail: ({ items, width, title, }: IDetailInput) => TDetail; export {};