UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

19 lines (18 loc) 548 B
import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties"; import { IValidator } from "../../validation"; export interface IAppDescriptionInput { description: string; onDescriptionChanged: (value: string) => void; useValidator: IValidator; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-app-description-input": TsxAllowUnknowProperties<IAppDescriptionInput>; } } }