Files
emaui/node_modules/@mantine/notifications/lib/get-grouped-notifications/get-grouped-notifications.d.ts
2026-05-29 15:23:46 +03:00

5 lines
367 B
TypeScript

import { NotificationData, NotificationPosition } from '../notifications.store';
export type GroupedNotifications = Record<NotificationPosition, NotificationData[]>;
export declare const positions: NotificationPosition[];
export declare function getGroupedNotifications(notifications: NotificationData[], defaultPosition: NotificationPosition): GroupedNotifications;