@tencentcloud/roomkit-web-vue3
Version:
<h1 align="center"> TUIRoomKit</h1> Conference (TUIRoomKit) is a product suitable for multi-person audio and video conversation scenarios such as business meetings, webinars, and online education. By integrating this product, you can add room management,
20 lines (19 loc) • 887 B
TypeScript
/**
* Emoji input interface in the chat screen.
* It should be noted that the emoticons in TUIRoomKit are copyrighted. The purchased IM service does not include the
* right to use the emoticons. Please replace them with your own emoticons when you go online, otherwise you will
* face legal risks.
* The yellow face emoji is copyrighted by Tencent Cloud. To use it, authorization is required.
* Please contact us through the following link.
*
* https://cloud.tencent.com/document/product/269/59590
*/
export declare const emojiBaseUrl = "https://web.sdk.qcloud.com/im/assets/emoji-plugin/";
export declare const emojiMap: Record<string, string>;
export declare const emojiList: string[];
export declare function decodeMessageText(payload: string): {
name: string;
text?: string;
src?: string;
}[];
export declare function decodeSendTextMsg(payload: string): string;