message.d.ts 337 B

1234567891011
  1. /**
  2. * 显示错误异常信息
  3. * @param msg 错误内容
  4. * @param sender 发送者按钮(可以为空)
  5. */
  6. export declare function showErrorDialog(msg: any, sender?: any): void;
  7. export declare function msgError(msg: any, sender?: any): void;
  8. /**
  9. * 中间灰底白字提示
  10. */
  11. export declare function msg(message: string): void;