UNPKG

@magicbell/react-headless

Version:
14 lines (13 loc) 427 B
import IRemoteNotification from './IRemoteNotification.js'; export type IStrategyComparator = (attribute: any, rule: any) => boolean; export default interface INotificationStore { context: Record<string, unknown>; total: number; totalPages: number; perPage: number; currentPage: number; unreadCount: number; unseenCount: number; notifications: IRemoteNotification[]; lastFetchedAt?: Date; }