UNPKG

html-reporter

Version:

Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.

6 lines (5 loc) 474 B
import { notify, Status as NotificationStatus, Notification } from 'reapop'; type UpsertNotificationAction = ReturnType<typeof notify>; export declare const createNotification: (id: string, status: NotificationStatus, message: string, props?: Partial<Notification>) => UpsertNotificationAction; export declare const createNotificationError: (id: string, error: Error, props?: Partial<Notification>) => UpsertNotificationAction; export { dismissNotification } from 'reapop';