/** * NotificationOptions 通知选项 */ export interface NotificationOptions { /** 通知标题 */ title: string; /** 通知内容 */ body?: string; } /** * Notification API 接口 */ export interface NotificationAPI { /** 显示系统通知 */ show: (options: NotificationOptions) => Promise; } /** * 系统通知 API */ export declare const notification: NotificationAPI; //# sourceMappingURL=notification.d.ts.map