import { Notification } from './notification'; export interface NewNotificationEvent { /** * New notification object */ n: Notification; /** * Timeout for notification pop-up. This is the length a non-special notification should stay on screen. */ to?: number; }