UNPKG

@salad-labs/loopz-typescript

Version:
14 lines 477 B
import { NotificationSubType, NotificationType } from "../../enums/notification"; import { NotificationOperation } from "./notificationoperation"; import { Collector } from "../../interfaces"; export type NotificationItem = { id: number; type: NotificationType; subType: NotificationSubType; operation?: NotificationOperation; user?: Collector; message?: string; date: number; isUnread: boolean; }; //# sourceMappingURL=notificationitem.d.ts.map