123456789101112131415161718192021222324 |
- /**
- * 弹出输入框,输入文字
- * @param message 提示文字
- * @param defaultValue 默认值
- * @param multiLine 是否多行输入
- */
- export declare function prompt(message: any, defaultValue?: string, multiLine?: boolean): Promise<string>;
- /**
- * 显示错误异常信息
- * @param msg 错误内容
- * @param sender 发送者按钮(可以为空)
- */
- export declare function showErrorDialog(msg: any, sender?: any): void;
- /**
- * 显示错误异常信息
- * @param msg 错误内容
- * @param sender 发送者按钮(可以为空)
- */
- export declare function showInfoDialogSimple(msg: any, sender?: any): void;
- export declare function msgError(msg: any, sender?: any): void;
- /**
- * 中间灰底白字提示
- */
- export declare function msg(message: string): void;
|