happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
12 lines • 348 B
TypeScript
import type Location from '../../location/Location.js';
import type BrowserWindow from '../../window/BrowserWindow.js';
import type { URL } from 'url';
/**
* Module initialization options.
*/
export default interface IModuleInit {
window: BrowserWindow;
url: URL | Location;
source: string;
}
//# sourceMappingURL=IModuleInit.d.ts.map