UNPKG

321 BTypeScriptView Raw
1import { XMLHttpRequestEventTarget } from './xml-http-request-event-target';
2export declare class ProgressEvent {
3 type: string;
4 bubbles: boolean;
5 cancelable: boolean;
6 target: XMLHttpRequestEventTarget;
7 loaded: number;
8 lengthComputable: boolean;
9 total: number;
10 constructor(type: string);
11}