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
18 lines (17 loc) • 651 B
TypeScript
import { StickerKeyboardStyle, StickerKeyboardStyleInterface } from "./StickerKeyboardStyle";
import { CometChat } from "@cometchat-pro/react-native-chat";
/**
* @class StickerKeyboardConfiguration
* @description StickerKeyboardConfiguration class is used for defining the StickerKeyboard templates.
* @param {Function} onPress
* @param {Object} style
*/
declare class StickerKeyboardConfiguration {
onPress: (item: CometChat.CustomMessage) => void;
style: StickerKeyboardStyleInterface;
constructor({ onPress, style }: {
onPress?: any;
style?: StickerKeyboardStyle;
});
}
export { StickerKeyboardConfiguration };