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.
16 lines • 408 B
TypeScript
import IRequestReferrerPolicy from '../../fetch/types/IRequestReferrerPolicy.cjs';
import IReloadOptions from './IReloadOptions.cjs';
/**
* Go to options.
*/
export default interface IGoToOptions extends IReloadOptions {
/**
* Referrer.
*/
referrer?: string;
/**
* Referrer policy.
*/
referrerPolicy?: IRequestReferrerPolicy;
}
//# sourceMappingURL=IGoToOptions.d.ts.map