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
16 lines (15 loc) • 830 B
TypeScript
import { ImageType } from '../shared';
import { CometChatJoinProtectedGroupInterface, JoinProtectedGroupStyleInterface } from './CometChatJoinProtectedGroup';
import { CometChat } from '@cometchat-pro/react-native-chat';
export interface JoinProtectedGroupConfigurationInterface extends Omit<CometChatJoinProtectedGroupInterface, 'group' | 'description' | 'title' | 'hasError' | 'errorText'> {
}
export declare class JoinProtectedGroupConfiguration {
closeIcon?: ImageType;
joinIcon?: ImageType;
onBack?: () => void;
onError?: (error: CometChat.CometChatException) => void;
joinProtectedGroupStyle?: JoinProtectedGroupStyleInterface;
onJoinClick?: (group: CometChat.Group, password: string) => void;
passwordPlaceholderText?: string;
constructor(props: JoinProtectedGroupConfigurationInterface);
}