twilio-ccai-fulfillment-tools
Version:
A collection of tools to assist in the creation of Twilio CCAI Integration cards via fulfillment scripts
13 lines (12 loc) • 327 B
TypeScript
import { TTimeline, SIZES } from '../types';
interface ITimelineInput {
position?: number;
items: Array<{
title: string;
subtitle: string;
}>;
width?: SIZES;
title?: string;
}
export declare const createTimeline: ({ items, width, title, position, }: ITimelineInput) => TTimeline;
export {};