UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

26 lines (25 loc) 894 B
import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties"; import { ResolvedUserIdentity, OmitProperties } from "../../models"; import { IRichTextEditor } from "../richtexteditor"; export interface IPeopleTaggingComponent { content: string; disabled?: boolean; /**Show rich text editor*/ richTextSettings?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">; enableMention?: boolean; contentChanged: (content: string) => void; mentionChanged: (mentions: Array<ResolvedUserIdentity>) => void; resetContetnRte?: boolean; autoFocus?: boolean; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-people-tagging-component": TsxAllowUnknowProperties<IPeopleTaggingComponent>; } } }