import { TsxAllowUnknowProperties } from "../.."; import { AppInstance } from "../../../models"; export interface IAppInstanceEditingJourney { appInstance: AppInstance; content?: JSX.Element; onCanceled?: () => void; onSave: (appInstance: AppInstance) => Promise; onCompleted?: (appInstance: AppInstance) => void; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-appinstance-editing-journey": TsxAllowUnknowProperties; } } }