/** * 提示更新应用 * @param {Boolean} showUpdate 是否提示更新 * @param forceUpdate 强制更新 需要配合showUpdate一起使用 */ declare type UpdateParams = { showUpdate: boolean; modalTitle?: string; modalContent?: string; log?: boolean; forceUpdate?: boolean; }; export declare const update: (param?: UpdateParams) => Promise; export {};