@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
21 lines (20 loc) • 633 B
TypeScript
import { TsxAllowUnknowProperties } from "../";
import { EnterpriseGlossaryInstance } from "../../models";
export interface IEnterpriseGlossaryPicker {
/** The preselected value */
selected?: EnterpriseGlossaryInstance;
onSelected: (item: EnterpriseGlossaryInstance) => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-enterpriseglossary-picker": TsxAllowUnknowProperties<IEnterpriseGlossaryPicker>;
}
}
}