@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
26 lines (25 loc) • 759 B
TypeScript
import { TsxAllowUnknowProperties } from "../../../..";
import { MultilingualString } from "../../../../../models";
export interface IBlockTitleComponent {
title?: string;
multilingualtitle?: MultilingualString | string;
settingsKey: any;
/**
* @deprecated Use wrapWithHeaderLevel instead.
*/
alternativeContent?: JSX.Element;
wrapWithHeaderLevel?: (headerElement: JSX.Element) => JSX.Element;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-layout-block-title": TsxAllowUnknowProperties<IBlockTitleComponent>;
}
}
}