@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
21 lines (20 loc) • 531 B
TypeScript
import { UserIdentity } from "@omnia/fx-models";
export interface IInternalProfileCardDialog extends IProfileCardDialog {
removeElementAfterClosing: boolean;
}
export interface IProfileCardDialog {
user: UserIdentity;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-profilecard-dialog": IProfileCardDialog;
}
}
}