UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

18 lines (17 loc) 526 B
import { AppInstance } from "@omnia/fx-models"; import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties"; export interface IValidatorWrapper { appInstance: AppInstance; renderValidator: (h: any) => JSX.Element; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-app-provisioning-validator-wrapper": TsxAllowUnknowProperties<IValidatorWrapper>; } } }