@flashport/flashport
Version:
FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library
12 lines (11 loc) • 407 B
TypeScript
import { ErrorEvent } from "./ErrorEvent";
import { AEvent } from "./AEvent";
export declare class IOErrorEvent extends ErrorEvent {
static IO_ERROR: string;
static NETWORK_ERROR: string;
static DISK_ERROR: string;
static VERIFY_ERROR: string;
constructor(type: string, bubbles?: boolean, cancelable?: boolean, text?: string, id?: number);
clone(): AEvent;
toString(): string;
}