notifyWeex.d.ts 709 B

123456789101112131415161718192021
  1. /**
  2. * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 请求参数定义
  3. * @apiName biz.event.notifyWeex
  4. */
  5. export interface IBizEventNotifyWeexParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 返回结果定义
  10. * @apiName biz.event.notifyWeex
  11. */
  12. export interface IBizEventNotifyWeexResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息
  17. * @apiName biz.event.notifyWeex
  18. * @supportVersion ios: 4.5.0
  19. */
  20. export declare function notifyWeex$(params: IBizEventNotifyWeexParams): Promise<IBizEventNotifyWeexResult>;
  21. export default notifyWeex$;