Show success messages, and print messages on the console by default. You can modify the `messageSuccess` method and use the UI to display `engine.messageSuccess = text => Message.show(text)`
This method may be called in the plug-in or the engine to pop up a message
```ts
/**
* Show success information
*@param message
*/
messageSuccess(message: string): void;
```
### `messageError`
Show error message
```ts
/**
* Display error message
*@param error error message
*/
messageError(error: string): void;
```
### `messageConfirm`
A confirmation prompt box pops up, no UI is displayed in the engine by default, and false is always returned. So you need to re-assign a meaningful confirmation prompt box function
For example, using the Modal.confirm component of antd
```ts
engine.messageConfirm = (msg: string) => {
return new Promise<boolean>((resolve, reject) => {