@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
23 lines (22 loc) • 535 B
TypeScript
import { OrgTreeUser } from "../../models";
export interface IPersona {
[name: string]: any;
largeImage?: boolean;
linkToProfilecard?: boolean;
highlight?: boolean;
user: OrgTreeUser;
onUserClick?: (user: OrgTreeUser) => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-persona": IPersona;
}
}
}