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.

18 lines 477 B
import Event from '../Event.js'; import IProgressEventInit from './IProgressEventInit.js'; /** * */ export default class ProgressEvent extends Event { readonly lengthComputable: boolean; readonly loaded: number; readonly total: number; /** * Constructor. * * @param type Event type. * @param [eventInit] Event init. */ constructor(type: string, eventInit?: IProgressEventInit | null); } //# sourceMappingURL=ProgressEvent.d.ts.map