@salad-labs/loopz-typescript
Version:
The Official Loopz TypeScript SDK
14 lines • 477 B
TypeScript
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