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.

14 lines 271 B
/** * Reload options. */ export default interface IReloadOptions { /** * Set to true to bypass the cache. */ hard?: boolean; /** * Timeout in ms. Default is 30000ms. */ timeout?: number; } //# sourceMappingURL=IReloadOptions.d.ts.map