MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export declare const apiName = "internal.biz.webNotify";
/**
 * 通知容器前端页面事件,透传参数 请求参数定义
 * @apiName internal.biz.webNotify
 */
export interface IInternalBizWebNotifyParams {
    /** 容器类型 */
    type: string;
    /** 透传的json数据 */
    data: string;
}
/**
 * 通知容器前端页面事件,透传参数 返回结果定义
 * @apiName internal.biz.webNotify
 */
export interface IInternalBizWebNotifyResult {
}
/**
 * 通知容器前端页面事件,透传参数
 * @apiName internal.biz.webNotify
 * @supportVersion ios: 4.6.37 android: 4.6.37
 */
export declare function webNotify$(params: IInternalBizWebNotifyParams): Promise<IInternalBizWebNotifyResult>;
export default webNotify$;