UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

18 lines (17 loc) 473 B
import { AppInstance } from "../../../models"; import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties"; export interface IAppImageInput { appInstance: AppInstance; onValueChanged?: () => void; } declare global { namespace JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-app-image-input": TsxAllowUnknowProperties<IAppImageInput>; } } }