import { BaseMessenger } from "halo-fe"; /** * 消息服务 */ export declare class PcMessenger extends BaseMessenger { /** * 显示全局成功消息 */ success: (message: string) => void; /** * 显示全局警告消息 */ warning: (message: string) => void; /** * 显示全局信息消息 */ info: (message: string) => void; /** * 显示全局错误消息 */ error: (message: string) => void; /** * 显示全局错误消息 */ confirm: (title: string, message: string, options?: any) => Promise; /** * 显示警告框 */ alert: (title: string, message: string, options?: any) => Promise; /** * 通知 */ notify: (title: string, message: string, type: string) => import("element-plus").NotificationHandle; }