UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

22 lines (21 loc) 622 B
import { TsxAllowUnknowProperties } from "../../../.."; import { MultilingualString } from "../../../../../models"; export interface IBlockTitleComponent { title?: string; multilingualtitle?: MultilingualString | string; settingsKey: any; alternativeContent?: JSX.Element; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-layout-block-title": TsxAllowUnknowProperties<IBlockTitleComponent>; } } }