@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
17 lines (16 loc) • 491 B
TypeScript
import { IValidator } from "../..";
import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
export interface IAppPropertyNamingPolicyInput {
useValidator?: IValidator;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-app-property-naming-policy-input": TsxAllowUnknowProperties<IAppPropertyNamingPolicyInput>;
}
}
}