happy-dom-without-node
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 (16 loc) • 425 B
TypeScript
import IBrowserFrame from '../types/IBrowserFrame.js';
import { URL } from '../../polyfills/url.js';
/**
* 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