import { OrgTree, OrgTreeComponentSettings } from "../../models"; export interface IOrganizationTreeProperties { } export interface IOrganizationTree extends IOrganizationTreeProperties { [name: string]: any; valueBind: OrgTreeComponentSettings; onNewUserSelected?: (tree: OrgTree) => void; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-organizationtree": IOrganizationTree; } } }