@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 387 B
TypeScript
export interface IResizingIFrame {
js?: string;
html?: string;
css?: string;
iframeHeight?: string;
iframeCustomStyle?: string | {};
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-iframe": IResizingIFrame;
}
}
}