fetch.d.ts 493 B

123456789101112131415161718192021
  1. /**
  2. * 请求参数定义
  3. * @apiName runtime.message.fetch
  4. */
  5. export interface IRuntimeMessageFetchParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 返回结果定义
  10. * @apiName runtime.message.fetch
  11. */
  12. export interface IRuntimeMessageFetchResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. *
  17. * @apiName runtime.message.fetch
  18. * @supportVersion ios: 2.6.0 android: 2.6.0
  19. */
  20. export declare function fetch$(params: IRuntimeMessageFetchParams): Promise<IRuntimeMessageFetchResult>;
  21. export default fetch$;