tornado-cli/local_modules/web3-providers-http/local_modules/xhr2-cookies/progress-event.ts

13 lines
276 B
TypeScript

import { XMLHttpRequestEventTarget } from './xml-http-request-event-target';
export class ProgressEvent {
bubbles = false;
cancelable = false;
target: XMLHttpRequestEventTarget;
loaded = 0;
lengthComputable = false;
total = 0;
constructor (public type: string) {}
}