locationChatMessage.d.ts 589 B

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