Type Alias NotificationBase
NotificationBase: {
link?: string;
message: string;
organization: string;
popupId?: string;
progress?: number;
shouldSaveToDb?: boolean;
shouldSendEmail?: boolean;
shouldSendPushNotification?: boolean;
showPopup?: boolean;
status: "info" | "success" | "error";
title?: string;
user: string;
}
Type declaration
Optional
link?: string
message: string
organization: string
Optional
popupId?: string
Optional
progress?: number
Optional
shouldSaveToDb?: boolean
Optional
shouldSendEmail?: boolean
Optional
shouldSendPushNotification?: boolean
Optional
showPopup?: boolean
status: "info" | "success" | "error"
Optional
title?: string
user: string