UNPKG

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.

15 lines (13 loc) 204 B
/** * Reload options. */ export default interface IReloadOptions { /** * Set to true to bypass the cache. */ hard?: boolean; /** * Timeout in ms. Default is 30000ms. */ timeout?: number; }