@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
18 lines (17 loc) • 516 B
TypeScript
import { TsxAllowUnknowProperties } from "../..";
import { GuidValue } from "../../../models";
export interface IQueryablePropertiesJourney {
serviceId: GuidValue;
additionalBuiltInProperties?: Array<GuidValue>;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-queryable-enterpriseproperties": TsxAllowUnknowProperties<IQueryablePropertiesJourney>;
}
}
}