UNPKG

294 BTypeScriptView Raw
1import { Enums } from '../extensibility';
2export declare module Notification {
3 interface INotificationMessage {
4 messageType: Enums.MessageType;
5 title: string;
6 body: string;
7 timeout: number;
8 toasterId: any;
9 toastId: string;
10 }
11}