@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
23 lines (22 loc) • 674 B
TypeScript
import Vue from "vue";
import { IWebComponentInstance } from "../..";
import { IResizingIFrame } from "./IResizingIFrame";
export declare class ResizingIFrame extends Vue implements IWebComponentInstance, IResizingIFrame {
static IFrameContentCss: string;
static IFrameWrapperClass: string;
rendered: boolean;
id: string;
js: string;
html: string;
css: string;
iframeHeight: string;
iframeCustomStyle: string;
private get iframeResizer();
mounted(): void;
beforeDestroy(): void;
created(): void;
renderContent(): void;
getCustomClass(): string;
getCustomStyle(): {};
render(): VueTsxSupport.JSX.Element;
}