@flashport/flashport
Version:
FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library
11 lines (10 loc) • 351 B
TypeScript
import { TextEvent } from "./TextEvent";
import { AEvent } from "./AEvent";
export declare class ErrorEvent extends TextEvent {
static ERROR: string;
private m_errorID;
constructor(type: string, bubbles?: boolean, cancelable?: boolean, text?: string, id?: number);
get errorID(): number;
clone(): AEvent;
toString(): string;
}