zhizhi/node_modules/dingtalk-jsapi/api/biz/chat/sendEmotion.d.ts

27 lines
1000 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 发送表情。调用js-api后会唤起选会话组件用户选择发送的会话确认后发送。 请求参数定义
* imageUrl和mediaId二选一 authMediaId配合mediaId可选
* @apiName biz.chat.sendEmotion
*/
export interface IBizChatSendEmotionParams {
/** 表情图片链接 */
imageUrl?: string;
/** 表情图片mediaId */
mediaId?: string;
/** 表情图片authMediaId */
authMediaId?: string;
}
/**
* 发送表情。调用js-api后会唤起选会话组件用户选择发送的会话确认后发送。 返回结果定义
* @apiName biz.chat.sendEmotion
*/
export interface IBizChatSendEmotionResult {
}
/**
* 发送表情。调用js-api后会唤起选会话组件用户选择发送的会话确认后发送。
* @apiName biz.chat.sendEmotion
* @supportVersion ios: 4.6.12 android: 4.6.12
*/
export declare function sendEmotion$(params: IBizChatSendEmotionParams): Promise<IBizChatSendEmotionResult>;
export default sendEmotion$;