Onlife/node_modules/xhr2-cookies/dist/progress-event.d.ts

12 lines
321 B
TypeScript
Raw Permalink Normal View History

2025-04-19 15:38:48 +08:00
import { XMLHttpRequestEventTarget } from './xml-http-request-event-target';
export declare class ProgressEvent {
type: string;
bubbles: boolean;
cancelable: boolean;
target: XMLHttpRequestEventTarget;
loaded: number;
lengthComputable: boolean;
total: number;
constructor(type: string);
}