@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
17 lines (16 loc) • 345 B
TypeScript
/**
* @class CometChatEmoji
* @description CometChatEmoji class is used for defining the emoji.
*
* @param {String} char
* @param {Array} keywords
*/
declare class CometChatEmoji {
char: string;
keywords: never[];
constructor({ char, keywords }: {
char: any;
keywords: any;
});
}
export { CometChatEmoji };