PromucFlow_constructor/app/client/src/entities/Notification.ts
2021-06-09 20:02:17 +05:30

13 lines
265 B
TypeScript

export type AppsmithNotification = {
id: string;
_id?: string;
type: string;
new: boolean;
[key: string]: any;
};
export enum NotificationTypes {
CommentNotification = "CommentNotification",
CommentThreadNotification = "CommentThreadNotification",
}