import CustomElementRegistry from '../custom-element/CustomElementRegistry'; import Document from '../nodes/document/Document'; import HTMLDocument from '../nodes/html-document/HTMLDocument'; import XMLDocument from '../nodes/xml-document/XMLDocument'; import SVGDocument from '../nodes/svg-document/SVGDocument'; import Node from '../nodes/node/Node'; import Text from '../nodes/text/Text'; import Comment from '../nodes/comment/Comment'; import ShadowRoot from '../nodes/shadow-root/ShadowRoot'; import Element from '../nodes/element/Element'; import HTMLTemplateElement from '../nodes/html-template-element/HTMLTemplateElement'; import HTMLFormElement from '../nodes/html-form-element/HTMLFormElement'; import HTMLElement from '../nodes/html-element/HTMLElement'; import IHTMLElement from '../nodes/html-element/IHTMLElement'; import HTMLUnknownElement from '../nodes/html-unknown-element/HTMLUnknownElement'; import HTMLInputElement from '../nodes/html-input-element/HTMLInputElement'; import HTMLTextAreaElement from '../nodes/html-text-area-element/HTMLTextAreaElement'; import HTMLLinkElement from '../nodes/html-link-element/HTMLLinkElement'; import HTMLStyleElement from '../nodes/html-style-element/HTMLStyleElement'; import HTMLSlotElement from '../nodes/html-slot-element/HTMLSlotElement'; import HTMLLabelElement from '../nodes/html-label-element/HTMLLabelElement'; import HTMLMetaElement from '../nodes/html-meta-element/HTMLMetaElement'; import HTMLBaseElement from '../nodes/html-base-element/HTMLBaseElement'; import SVGSVGElement from '../nodes/svg-element/SVGSVGElement'; import SVGElement from '../nodes/svg-element/SVGElement'; import HTMLScriptElement from '../nodes/html-script-element/HTMLScriptElement'; import HTMLImageElement from '../nodes/html-image-element/HTMLImageElement'; import Image from '../nodes/html-image-element/Image'; import DocumentFragment from '../nodes/document-fragment/DocumentFragment'; import CharacterData from '../nodes/character-data/CharacterData'; import TreeWalker from '../tree-walker/TreeWalker'; import Event from '../event/Event'; import CustomEvent from '../event/events/CustomEvent'; import AnimationEvent from '../event/events/AnimationEvent'; import KeyboardEvent from '../event/events/KeyboardEvent'; import ProgressEvent from '../event/events/ProgressEvent'; import EventTarget from '../event/EventTarget'; import URL from '../location/URL'; import Location from '../location/Location'; import MutationObserver from '../mutation-observer/MutationObserver'; import DOMParser from '../dom-parser/DOMParser'; import XMLSerializer from '../xml-serializer/XMLSerializer'; import ResizeObserver from '../resize-observer/ResizeObserver'; import Blob from '../file/Blob'; import File from '../file/File'; import DOMException from '../exception/DOMException'; import FileReader from '../file/FileReader'; import History from '../history/History'; import CSSStyleSheet from '../css/CSSStyleSheet'; import CSSStyleDeclaration from '../css/CSSStyleDeclaration'; import CSS from '../css/CSS'; import CSSUnitValue from '../css/CSSUnitValue'; import PointerEvent from '../event/events/PointerEvent'; import MouseEvent from '../event/events/MouseEvent'; import FocusEvent from '../event/events/FocusEvent'; import WheelEvent from '../event/events/WheelEvent'; import DataTransfer from '../event/DataTransfer'; import DataTransferItem from '../event/DataTransferItem'; import DataTransferItemList from '../event/DataTransferItemList'; import InputEvent from '../event/events/InputEvent'; import UIEvent from '../event/UIEvent'; import ErrorEvent from '../event/events/ErrorEvent'; import StorageEvent from '../event/events/StorageEvent'; import Screen from '../screen/Screen'; import AsyncTaskManager from '../async-task-manager/AsyncTaskManager'; import Storage from '../storage/Storage'; import NodeFilter from '../tree-walker/NodeFilter'; import HTMLCollection from '../nodes/element/HTMLCollection'; import NodeList from '../nodes/node/NodeList'; import Selection from '../selection/Selection'; import IEventTarget from '../event/IEventTarget'; import Navigator from '../navigator/Navigator'; import MimeType from '../navigator/MimeType'; import MimeTypeArray from '../navigator/MimeTypeArray'; import Plugin from '../navigator/Plugin'; import PluginArray from '../navigator/PluginArray'; import IResponseInit from '../fetch/IResponseInit'; import IRequest from '../fetch/IRequest'; import IHeaders from '../fetch/IHeaders'; import IRequestInit from '../fetch/IRequestInit'; import IResponse from '../fetch/IResponse'; import MediaQueryList from '../match-media/MediaQueryList'; import DOMRect from '../nodes/element/DOMRect'; import Window from './Window'; import { URLSearchParams } from 'url'; import { Performance } from 'perf_hooks'; /** * Window without dependencies to server side specific packages. */ export default interface IWindow extends IEventTarget, NodeJS.Global { // Public Properties readonly happyDOM: { whenAsyncComplete: () => Promise; cancelAsync: () => void; asyncTaskManager: AsyncTaskManager; }; // Global classes readonly Node: typeof Node; readonly HTMLElement: typeof HTMLElement; readonly HTMLUnknownElement: typeof HTMLUnknownElement; readonly HTMLTemplateElement: typeof HTMLTemplateElement; readonly HTMLFormElement: typeof HTMLFormElement; readonly HTMLInputElement: typeof HTMLInputElement; readonly HTMLTextAreaElement: typeof HTMLTextAreaElement; readonly HTMLImageElement: typeof HTMLImageElement; readonly HTMLScriptElement: typeof HTMLScriptElement; readonly HTMLLinkElement: typeof HTMLLinkElement; readonly HTMLStyleElement: typeof HTMLStyleElement; readonly HTMLSlotElement: typeof HTMLSlotElement; readonly HTMLLabelElement: typeof HTMLLabelElement; readonly HTMLMetaElement: typeof HTMLMetaElement; readonly HTMLBaseElement: typeof HTMLBaseElement; readonly SVGSVGElement: typeof SVGSVGElement; readonly SVGElement: typeof SVGElement; readonly Image: typeof Image; readonly Text: typeof Text; readonly Comment: typeof Comment; readonly ShadowRoot: typeof ShadowRoot; readonly Element: typeof Element; readonly DocumentFragment: typeof DocumentFragment; readonly CharacterData: typeof CharacterData; readonly NodeFilter: typeof NodeFilter; readonly TreeWalker: typeof TreeWalker; readonly DOMParser: typeof DOMParser; readonly MutationObserver: typeof MutationObserver; readonly Document: typeof Document; readonly HTMLDocument: typeof HTMLDocument; readonly XMLDocument: typeof XMLDocument; readonly SVGDocument: typeof SVGDocument; readonly Event: typeof Event; readonly UIEvent: typeof UIEvent; readonly CustomEvent: typeof CustomEvent; readonly AnimationEvent: typeof AnimationEvent; readonly KeyboardEvent: typeof KeyboardEvent; readonly PointerEvent: typeof PointerEvent; readonly MouseEvent: typeof MouseEvent; readonly FocusEvent: typeof FocusEvent; readonly WheelEvent: typeof WheelEvent; readonly InputEvent: typeof InputEvent; readonly ErrorEvent: typeof ErrorEvent; readonly StorageEvent: typeof StorageEvent; readonly ProgressEvent: typeof ProgressEvent; readonly EventTarget: typeof EventTarget; readonly DataTransfer: typeof DataTransfer; readonly DataTransferItem: typeof DataTransferItem; readonly DataTransferItemList: typeof DataTransferItemList; readonly URL: typeof URL; readonly Location: typeof Location; readonly CustomElementRegistry: typeof CustomElementRegistry; readonly Window: typeof Window; readonly XMLSerializer: typeof XMLSerializer; readonly ResizeObserver: typeof ResizeObserver; readonly CSSStyleSheet: typeof CSSStyleSheet; readonly Blob: typeof Blob; readonly File: typeof File; readonly FileReader: typeof FileReader; readonly DOMException: typeof DOMException; readonly History: typeof History; readonly Screen: typeof Screen; readonly Storage: typeof Storage; readonly URLSearchParams: typeof URLSearchParams; readonly HTMLCollection: typeof HTMLCollection; readonly NodeList: typeof NodeList; readonly CSSUnitValue: typeof CSSUnitValue; readonly CSS: CSS; readonly Selection: typeof Selection; readonly Navigator: typeof Navigator; readonly MimeType: typeof MimeType; readonly MimeTypeArray: typeof MimeTypeArray; readonly Plugin: typeof Plugin; readonly PluginArray: typeof PluginArray; readonly Headers: { new (init?: string[][] | Record | IHeaders): IHeaders }; readonly Request: { new (input: string | IRequest, init?: IRequestInit): IRequest }; readonly Response: { new (body?: unknown | null, init?: IResponseInit): IResponse }; readonly DOMRect: typeof DOMRect; // Events onload: (event: Event) => void; onerror: (event: ErrorEvent) => void; // Public Properties readonly document: Document; readonly customElements: CustomElementRegistry; readonly location: Location; readonly history: History; readonly navigator: Navigator; readonly console: Console; readonly self: IWindow; readonly top: IWindow; readonly parent: IWindow; readonly window: IWindow; readonly globalThis: IWindow; readonly screen: Screen; readonly innerWidth: number; readonly innerHeight: number; readonly sessionStorage: Storage; readonly localStorage: Storage; readonly performance: Performance; /** * Evaluates code. * * @param code Code. * @returns Result. */ eval(code: string): unknown; /** * Returns an object containing the values of all CSS properties of an element. * * @param element Element. * @returns CSS style declaration. */ getComputedStyle(element: IHTMLElement): CSSStyleDeclaration; /** * Returns selection. * * @returns Selection. */ getSelection(): Selection; /** * Scrolls to a particular set of coordinates. * * @param x X position or options object. * @param y Y position. */ scroll(x: { top?: number; left?: number; behavior?: string } | number, y?: number): void; /** * Scrolls to a particular set of coordinates. * * @param x X position or options object. * @param y Y position. */ scrollTo(x: { top?: number; left?: number; behavior?: string } | number, y?: number): void; /** * Returns a new MediaQueryList object that can then be used to determine if the document matches the media query string. * * @param mediaQueryString A string specifying the media query to parse into a MediaQueryList. * @returns A new MediaQueryList. */ matchMedia(mediaQueryString: string): MediaQueryList; /** * Sets a timer which executes a function once the timer expires. * * @param callback Function to be executed. * @param [delay=0] Delay in ms. * @returns Timeout ID. */ setTimeout(callback: () => void, delay?: number): NodeJS.Timeout; /** * Cancels a timeout previously established by calling setTimeout(). * * @param id ID of the timeout. */ clearTimeout(id: NodeJS.Timeout): void; /** * Calls a function with a fixed time delay between each call. * * @param callback Function to be executed. * @param [delay=0] Delay in ms. * @returns Interval ID. */ setInterval(callback: () => void, delay?: number): NodeJS.Timeout; /** * Cancels a timed repeating action which was previously established by a call to setInterval(). * * @param id ID of the interval. */ clearInterval(id: NodeJS.Timeout): void; /** * Mock animation frames with timeouts. * * @param {Function} callback Callback. * @returns {NodeJS.Timeout} Timeout ID. */ requestAnimationFrame(callback: (timestamp: number) => void): NodeJS.Timeout; /** * Mock animation frames with timeouts. * * @param {NodeJS.Timeout} id Timeout ID. */ cancelAnimationFrame(id: NodeJS.Timeout): void; /** * This method provides an easy, logical way to fetch resources asynchronously across the network. * * @param url URL. * @param [init] Init. * @returns Promise. */ fetch(url: string, init?: IRequestInit): Promise; }