UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

19 lines (18 loc) 658 B
import { TsxAllowUnknowProperties } from "../../.."; import { AppProvisioningStepContext } from "../../../../models"; export interface IAppInstanceEnterprisePropertiesStep { 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-enterprise-step": TsxAllowUnknowProperties<IAppInstanceEnterprisePropertiesStep>; } } }