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
23 lines • 955 B
JavaScript
import { CollaborativeWhiteboardExtension } from "../../extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtension";
import { LinkPreviewExtention } from "../../extensions/LinkPreview";
import { StickersExtension } from "../../extensions/Stickers";
import { TextModerationExtension } from "../../extensions/TextModeration";
export function UIKitSettings({ appId = "xxxxxxxxxx", region = "xx", authKey = "xxxxxxxxxxxxxxxxxxxxx", subscriptionType, autoEstablishSocketConnection, deviceToken, googleApiKey, extensions = [
new StickersExtension(),
new TextModerationExtension(),
new LinkPreviewExtention(),
new CollaborativeWhiteboardExtension(),
], disableCalling, }) {
return {
appId,
region,
authKey,
subscriptionType,
autoEstablishSocketConnection,
deviceToken,
googleApiKey,
extensions,
disableCalling,
};
}
//# sourceMappingURL=UIKitSettings.js.map