@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
58 lines (56 loc) • 1.48 kB
text/typescript
import {
CollaborativeDocumentExtension,
CometChatCollaborativeDocumentBubble,
} from "./CollaborativeDocument";
import {
CollaborativeWhiteboardExtension,
CometChatCollaborativeWhiteBoardBubble,
} from "./CollaborativeWhiteboard";
import { ExtensionConstants } from "./ExtensionConstants";
import {
LinkPreviewBubble,
LinkPreviewBubbleInterface,
LinkPreviewExtension,
} from "./LinkPreview";
import {
MessageTranslationBubble,
MessageTranslationExtension,
} from "./MessageTranslation";
import {
CometChatCreatePoll,
CometChatCreatePollInterface,
PollsConfigurationInterface,
PollsExtension,
} from "./Polls";
import {
CometChatStickerBubble,
CometChatStickerBubbleProps as CometChatStickerBubbleInterface,
StickerConfigurationInterface,
StickersExtension,
} from "./Stickers";
import {
ThumbnailGenerationExtension,
} from "./ThumbnailGeneration";
export {
CollaborativeDocumentExtension,
CollaborativeWhiteboardExtension,
CometChatCollaborativeDocumentBubble,
CometChatCollaborativeWhiteBoardBubble,
CometChatCreatePoll,
CometChatStickerBubble,
ExtensionConstants,
LinkPreviewBubble,
LinkPreviewExtension,
MessageTranslationBubble,
MessageTranslationExtension,
PollsExtension,
StickersExtension,
ThumbnailGenerationExtension,
};
export type {
LinkPreviewBubbleInterface,
PollsConfigurationInterface,
StickerConfigurationInterface,
CometChatCreatePollInterface,
CometChatStickerBubbleInterface,
};