UNPKG

airline-ccai-fulfillment-tools-test

Version:

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

12 lines (11 loc) 294 B
import { TTimeline, SIZES } from '../types'; interface ITimelineInput { items: Array<{ title: string; subtitle: string; }>; width?: SIZES; title?: string; } export declare const createTimeline: ({ items, width, title, }: ITimelineInput) => TTimeline; export {};