zhizhi/node_modules/dingtalk-jsapi/api/biz/event/notifyWeex.d.ts

22 lines
709 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 在iOS端weex的dd-web组件中调用此JSAPI可以向weex端发送消息 请求参数定义
* @apiName biz.event.notifyWeex
*/
export interface IBizEventNotifyWeexParams {
[key: string]: any;
}
/**
* 在iOS端weex的dd-web组件中调用此JSAPI可以向weex端发送消息 返回结果定义
* @apiName biz.event.notifyWeex
*/
export interface IBizEventNotifyWeexResult {
[key: string]: any;
}
/**
* 在iOS端weex的dd-web组件中调用此JSAPI可以向weex端发送消息
* @apiName biz.event.notifyWeex
* @supportVersion ios: 4.5.0
*/
export declare function notifyWeex$(params: IBizEventNotifyWeexParams): Promise<IBizEventNotifyWeexResult>;
export default notifyWeex$;