@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 500 B
TypeScript
import { BlockRenderingModes } from "../../models/Enums";
import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
/**Rollup Empty Rendering */
export interface IRollupEmpty {
text?: string;
renderingMode?: BlockRenderingModes;
}
declare global {
namespace JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-rollup-empty": TsxAllowUnknowProperties<IRollupEmpty>;
}
}
}