UNPKG

twilio-ccai-fulfillment-tools

Version:

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

10 lines (9 loc) 292 B
import { TNotification } from '../types'; interface INotificationInput { title?: string; position?: number; type: 'success' | 'error'; text: string; } export declare const createNotification: ({ title, type, text, position, }: INotificationInput) => TNotification; export {};