@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
15 lines (14 loc) • 520 B
TypeScript
import { CometChat } from "@cometchat/chat-sdk-react-native";
/**
* @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;
constructor({ onPress }: {
onPress?: ((item: CometChat.CustomMessage) => void) | undefined;
});
}
export { StickerKeyboardConfiguration };