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

27 lines
1000 B
TypeScript
Raw Normal View History

/**
* 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$;