import { IBridgeOptions } from './interface'; /** * 容器事件,仅在原生运行下有效 * 当app应用从前台回到后台时会触发 appDisappear 事件
* 参考 http://document.lightyy.com/zh-cn/api/olight-event.html#appdisappear * * @param {IBridgeOptions} { success, fail, complete } */ declare function appDisappearSync({ success, fail, complete }: IBridgeOptions): void; export { appDisappearSync };