@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
18 lines (17 loc) • 419 B
TypeScript
import { GuidValue } from "../../models";
export interface IFeatureJourney {
appInstanceId?: GuidValue;
targetResolverType: string;
onInstanceClosed?: () => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-features-journey": IFeatureJourney;
}
}
}