xsy-breeze-ui-rpa > NotificationMessageInterface > inports
NotificationMessageInterface.inports property
Signature:
inports: {
success: {
param: NotifyMessageType;
return: {};
};
error: {
param: NotifyMessageType;
return: {};
};
warning: {
param: NotifyMessageType;
return: {};
};
confirm: {
param: {
message: string;
};
return: {
result: string;
};
};
prompt: {
param: {
message: string;
};
return: {
result: string;
};
};
message: {
param: {
content: string | string[];
type: 'success' | 'error' | 'warning' | 'info' | 'loading';
duration: number;
style: any;
};
return: {};
};
};
