UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

24 lines (23 loc) 698 B
import { TsxAllowUnknowProperties } from "../../.."; import { BackgroundSettings } from "../../../../models"; export interface IBackgroundSettingsComponent { settings: BackgroundSettings; forceDark?: boolean; allowOverflow?: boolean; hideChromeStyling?: boolean; hideBackgroundColor?: boolean; hideAcrylicSettings?: boolean; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-layout-background-settings": TsxAllowUnknowProperties<IBackgroundSettingsComponent>; } } }