subscribe.d.ts 686 B

1234567891011121314151617181920212223
  1. /**
  2. * 大客户业务应用订阅事件 请求参数定义
  3. * @apiName biz.realm.subscribe
  4. */
  5. export interface IBizRealmSubscribeParams {
  6. channel: string;
  7. }
  8. /**
  9. * 大客户业务应用订阅事件 返回结果定义
  10. * @apiName biz.realm.subscribe
  11. */
  12. export interface IBizRealmSubscribeResult {
  13. /** map形态的内容,和具体客户约定具体格式 */
  14. data: any;
  15. }
  16. /**
  17. * 大客户业务应用订阅事件
  18. * @apiName biz.realm.subscribe
  19. * @supportVersion ios: 4.7.18 android: 4.7.18
  20. * @author Android :笔歌; IOS: 怒龙
  21. */
  22. export declare function subscribe$(params: IBizRealmSubscribeParams): Promise<IBizRealmSubscribeResult>;
  23. export default subscribe$;