@flashport/flashport
Version:
FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library
15 lines (14 loc) • 495 B
TypeScript
import { AEvent } from "./AEvent";
export declare class ProgressEvent extends AEvent {
static PROGRESS: string;
static SOCKET_DATA: string;
private m_bytesLoaded;
private m_bytesTotal;
constructor(type: string, bubbles?: boolean, cancelable?: boolean, bytesLoaded?: number, bytesTotal?: number);
clone(): AEvent;
toString(): string;
get bytesLoaded(): number;
set bytesLoaded(value: number);
get bytesTotal(): number;
set bytesTotal(value: number);
}