UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

19 lines (18 loc) 546 B
import { AppInstance } from "../../../models"; import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties"; export interface IAppInstanceRoutePathBlade { appInstance: AppInstance; handleClose: () => void; routePrefix: string; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-app-instance-route-path-blade": TsxAllowUnknowProperties<IAppInstanceRoutePathBlade>; } } }