Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/ext/web/lib.deno_web.d.ts>ProgressEvent

A modern runtime for JavaScript and TypeScript.
Latest
variable ProgressEvent
import { ProgressEvent } from "https://deno.land/x/deno@v2.0.4/ext/web/lib.deno_web.d.ts";

Events measuring progress of an underlying process, like an HTTP request (for an XMLHttpRequest, or the loading of the underlying resource of an , , , or ).

type

{ readonly prototype: ProgressEvent; new (type: string, eventInitDict?: ProgressEventInit): ProgressEvent; }