(message: string)
| 356 | readonly notification: Notification; |
| 357 | } |
| 358 | export function showNotification(message: string): ShowNotificationAction { |
| 359 | return { type: SHOW_NOTIFICATION, notification: { type: 'error', message } }; |
| 360 | } |
| 361 | |
| 362 | export interface ClearNotificationAction { |
| 363 | readonly type: typeof CLEAR_NOTIFICATION; |
no outgoing calls
no test coverage detected
searching dependent graphs…