post.d.ts 484 B

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