UNPKG

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.

17 lines 437 B
/// <reference types="node" /> import IBrowserFrame from '../types/IBrowserFrame.cjs'; import { URL } from 'url'; /** * Browser frame URL utility. */ export default class BrowserFrameURL { /** * Returns relative URL. * * @param frame Frame. * @param url URL. * @returns Relative URL. */ static getRelativeURL(frame: IBrowserFrame, url: string): URL; } //# sourceMappingURL=BrowserFrameURL.d.ts.map