import { INotifyService } from '../INotifyService'; /** * E 通知服务实现 */ export default class NotifyService implements INotifyService { info(message: string): void; success(message: string): void; warn(message: string): void; error(message: string): void; loading?(message: string): string; close?(message: string, key: string, isSuccess: boolean): void; clear?(): void; enable: boolean; setEnable(enable: boolean): void; }