import Event from '../../event/Event.js'; import IWindow from '../../window/IWindow.js'; import IDocument from '../document/IDocument.js'; import IHTMLElement from '../html-element/IHTMLElement.js'; import IFrameCrossOriginWindow from './IFrameCrossOriginWindow.js'; /** * HTML Iframe Element. * * Reference: * https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement. */ export default interface IHTMLIFrameElement extends IHTMLElement { src: string | null; allow: string | null; height: string | null; width: string | null; name: string | null; sandbox: string | null; srcdoc: string | null; readonly contentDocument: IDocument | null; readonly contentWindow: IWindow | IFrameCrossOriginWindow | null; onload: (event: Event) => void | null; onerror: (event: Event) => void | null; } //# sourceMappingURL=IHTMLIFrameElement.d.ts.map