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.

12 lines 408 B
import FormData from '../form-data/FormData.cjs'; import HistoryScrollRestorationEnum from './HistoryScrollRestorationEnum.cjs'; export default interface IHistoryItem { title: string | null; href: string; state: any | null; scrollRestoration: HistoryScrollRestorationEnum; method: string; formData: FormData | null; isCurrent: boolean; } //# sourceMappingURL=IHistoryItem.d.ts.map