UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

21 lines (20 loc) 489 B
import { OrgTreeUser } from "../../../models"; export interface IReportees { [name: string]: any; users: OrgTreeUser[]; manager: OrgTreeUser; onUserClick?: (user: OrgTreeUser) => void; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-reportees": IReportees; } } }