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.

13 lines (11 loc) 353 B
import type FormData from '../form-data/FormData.js'; import type HistoryScrollRestorationEnum from './HistoryScrollRestorationEnum.js'; export default interface IHistoryItem { title: string | null; href: string; state: any | null; popState: boolean; scrollRestoration: HistoryScrollRestorationEnum; method: string; formData: FormData | null; }