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.
18 lines (15 loc) • 356 B
text/typescript
import type { TRequestReferrerPolicy } from '../../fetch/types/TRequestReferrerPolicy.js';
import type IReloadOptions from './IReloadOptions.js';
/**
* Go to options.
*/
export default interface IGoToOptions extends IReloadOptions {
/**
* Referrer.
*/
referrer?: string;
/**
* Referrer policy.
*/
referrerPolicy?: TRequestReferrerPolicy;
}