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
Optionallink?: string
message: string
organization: string
OptionalpopupId?: string
Optionalprogress?: number
OptionalshouldSaveToDb?: boolean
OptionalshouldSendEmail?: boolean
OptionalshouldSendPushNotification?: boolean
OptionalshowPopup?: boolean
status: "info" | "success" | "error"
Optionaltitle?: string
user: string