@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
22 lines (21 loc) • 659 B
TypeScript
import { TsxAllowUnknowProperties } from "../../../..";
import { BlockTitleSettings } from "../../../../../models";
export interface IBlockTitleSettingsComponent {
componentMode: boolean;
hideicontab?: boolean;
settingskey?: string;
onSettingsChanged?: (settings: BlockTitleSettings) => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-layout-block-title-settings": TsxAllowUnknowProperties<IBlockTitleSettingsComponent>;
}
}
}