PromucFlow_constructor/app/client/src/entities/Notification.ts

13 lines
265 B
TypeScript
Raw Normal View History

2021-06-09 14:32:17 +00:00
export type AppsmithNotification = {
id: string;
_id?: string;
type: string;
new: boolean;
[key: string]: any;
};
export enum NotificationTypes {
CommentNotification = "CommentNotification",
CommentThreadNotification = "CommentThreadNotification",
}