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.
18 lines • 479 B
TypeScript
import Event from '../Event.cjs';
import IProgressEventInit from './IProgressEventInit.cjs';
/**
*
*/
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