@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
13 lines (12 loc) • 784 B
TypeScript
import { CometChat } from "@cometchat/chat-sdk-react-native";
import { OutgoingCallConfiguration } from "../CometChatOutgoingCall";
declare const CometChatCalls: any;
export interface CometChatCallButtonConfigurationInterface {
callSettingsBuilder?: (user?: CometChat.User, group?: CometChat.Group, isAudioOnly?: boolean) => typeof CometChatCalls.CallSettingsBuilder;
outgoingCallConfiguration?: OutgoingCallConfiguration;
}
export declare class CometChatCallButtonConfiguration implements CometChatCallButtonConfigurationInterface {
callSettingsBuilder?: (user?: CometChat.User, group?: CometChat.Group, isAudioOnly?: boolean) => typeof CometChatCalls.CallSettingsBuilder;
constructor({ callSettingsBuilder }: CometChatCallButtonConfigurationInterface);
}
export {};