UNPKG

188 BTypeScriptView Raw
1import { Notification } from './notification.type';
2export interface NotificationEvent {
3 add?: boolean;
4 command: string;
5 id?: string;
6 notification?: Notification;
7}