Files
directus/app/src/utils/notify.ts
2020-11-05 16:39:59 -05:00

10 lines
242 B
TypeScript

import { useNotificationsStore } from '@/stores/';
import { NotificationRaw } from '@/types';
let store: any;
export function notify(notification: NotificationRaw) {
if (!store) store = useNotificationsStore();
store.add(notification);
}