@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
22 lines (21 loc) • 605 B
TypeScript
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;
}
}
}