/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
packages/js/src/ui/internal/createNotification.ts
21 строка
580 B
Rahul Jain
feat(providers): add Webex Messaging OAuth support fixes NV-8272 (#11633)
13 июл 2026, 16:22
Не верифицирован
13 июл 2026, 16:22
52b1714
Код
Авторство
О чём код?
import { InboxService } from '../../api'; import { NovuEventEmitter } from '../../event-emitter'; import { ensureNotificationInstance } from '../../notifications/helpers'; import { Notification } from '../../notifications/notification'; import { InboxNotification } from '../../types'; export function createNotification({ emitter, inboxService, notification, }: { emitter: NovuEventEmitter; inboxService: InboxService; notification: InboxNotification; }): Notification { return ensureNotificationInstance({ notification, emitter, inboxService, }); }