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