Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

A modern runtime for JavaScript and TypeScript.
Latest
interface ProgressEvent
implements Event
import { type ProgressEvent } from "https://deno.land/x/deno@v1.41.0/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 ).

Properties

readonly
lengthComputable: boolean
readonly
loaded: number
readonly
target: T | null
readonly
total: number
variable ProgressEvent
import { ProgressEvent } from "https://deno.land/x/deno@v1.41.0/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; }