@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 567 B
TypeScript
import { TsxAllowUnknowProperties } from "../../..";
import { BackgroundSettings } from "../../../../models";
export interface IImageBackgroundSettingsComponent {
backgroundSettings: BackgroundSettings;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-layout-image-background-settings": TsxAllowUnknowProperties<IImageBackgroundSettingsComponent>;
}
}
}