@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 641 B
TypeScript
import { TsxAllowUnknowProperties } from "../../..";
import { AppProvisioningStepContext } from "../../../../models";
export interface IAppInstanceInformationStep {
context: AppProvisioningStepContext;
registerOnGoToNext: (onGoToNext: () => Promise<boolean>) => void;
registerOnGoToPrev: (onGoToPrev: () => Promise<boolean>) => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-app-instance-information-step": TsxAllowUnknowProperties<IAppInstanceInformationStep>;
}
}
}