@cometchat/chat-uikit-vue
Version:
Ready-to-use Chat UI Components for Vue(Javascript/Web)
19 lines (18 loc) • 642 B
TypeScript
import { DocumentBubbleStyle } from "@cometchat/uikit-elements";
import { OptionsStyle } from "@cometchat/uikit-shared";
export declare class CollaborativeDocumentConfiguration {
private style?;
private iconURL?;
private optionIconURL?;
private optionStyle?;
constructor(configuration: {
style?: DocumentBubbleStyle;
iconURL?: string;
optionIconURL?: string;
optionStyle?: OptionsStyle;
});
getDocumentBubbleStyle(): DocumentBubbleStyle | undefined;
getIconURL(): string | undefined;
getOptionIconURL(): string | undefined;
getOptionStyle(): OptionsStyle | undefined;
}