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) 259 B
import { TNotification } from '../types'; interface INotificationInput { title?: string; type: 'success' | 'error'; text: string; } export declare const createNotification: ({ title, type, text, }: INotificationInput) => TNotification; export {};