react-native-chating-ui-kit
Version:
CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly
22 lines (21 loc) • 499 B
TypeScript
/**
* @class CometChatEmojiCategory
* @description CometChatEmojiCategory class is used for defining the category.
* @param {String} id
* @param {String} name
* @param {String} symbol
* @param {Object} emojis
*/
declare class CometChatEmojiCategory {
id: string;
name: string;
symbol: string;
emojis: {};
constructor({ id, name, emojis, symbol }: {
id: any;
name: any;
emojis: any;
symbol: any;
});
}
export { CometChatEmojiCategory };