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