import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties"; import { Comment, OmitProperties, ThemeDefinition } from "../../models"; import { IRichTextEditor } from "../richtexteditor"; import { CommentSorting } from "../../models/Social"; export interface ICommentComponent { topicId: string; comments: Array; template?: string; dynamicInput?: any; /**Show rich text editor*/ richTextSettings?: OmitProperties; enableBestReply?: boolean; canMarkBestReply?: boolean; sortOrder?: CommentSorting; allowLikes?: boolean; cardStyle?: ThemeDefinition; showMoreSize?: number; additionalRoles?: Array; hideEdit?: boolean; readOnly?: boolean; hideTotalNumber?: boolean; contextParams?: { [key: string]: string | number; }; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-comment-component": TsxAllowUnknowProperties; } } }