collectSticker.d.ts 611 B

123456789101112131415161718192021
  1. /**
  2. * 收藏表情(支持批量) 请求参数定义
  3. * @apiName biz.chat.collectSticker
  4. */
  5. export interface IBizChatCollectStickerParams {
  6. /** 表情url数组 */
  7. stickerUrls: string[];
  8. }
  9. /**
  10. * 收藏表情(支持批量) 返回结果定义
  11. * @apiName biz.chat.collectSticker
  12. */
  13. export interface IBizChatCollectStickerResult {
  14. }
  15. /**
  16. * 收藏表情(支持批量)
  17. * @apiName biz.chat.collectSticker
  18. * @supportVersion ios: 4.6.25 android: 4.6.25
  19. */
  20. export declare function collectSticker$(params: IBizChatCollectStickerParams): Promise<IBizChatCollectStickerResult>;
  21. export default collectSticker$;