@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
21 lines (20 loc) • 634 B
TypeScript
import { TsxAllowUnknowProperties } from "../..";
import { AppInstance } from "../../../models";
export interface IAppInstanceEditingJourney {
appInstance: AppInstance;
content?: JSX.Element;
onCanceled?: () => void;
onSave: (appInstance: AppInstance) => Promise<string>;
onCompleted?: (appInstance: AppInstance) => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-appinstance-editing-journey": TsxAllowUnknowProperties<IAppInstanceEditingJourney>;
}
}
}