/
githubmirror
/
hyper
Обзор
Документация
Войти
/
githubmirror
/
hyper
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
lib/actions/notifications.ts
18 строк
477 B
Labhansh Agrawal
move constants to typings as well
25 июл 2023, 14:19
25 июл 2023, 14:19
f48c0e0
Код
Авторство
О чём код?
import {NOTIFICATION_MESSAGE, NOTIFICATION_DISMISS} from '../../typings/constants/notifications'; import type {HyperActions} from '../../typings/hyper'; export function dismissNotification(id: string): HyperActions { return { type: NOTIFICATION_DISMISS, id }; } export function addNotificationMessage(text: string, url: string | null = null, dismissable = true): HyperActions { return { type: NOTIFICATION_MESSAGE, text, url, dismissable }; }