import { NotificationLevel } from './interfaces' export const NOTIFICATION_REDUCER_KEY = 'notifications' export const NOTIFICATION_LEVELS: { [key: string]: NotificationLevel } = { ERROR: { key: 'error', icon: 'error', }, WARNING: { key: 'warning', icon: 'warning', }, DEBUG: { key: 'debug', icon: 'info', }, INFO: { key: 'info', icon: 'info', }, SUCCESS: { key: 'success', icon: 'success', }, } export const DEFAULT_AUTOCLOSE = 2000