@flashport/flashport
Version:
FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library
69 lines (68 loc) • 2.1 kB
TypeScript
export declare class AEvent extends Object {
static ACTIVATE: string;
static ADDED: string;
static ADDED_TO_STAGE: string;
static BROWSER_ZOOM_CHANGE: string;
static CANCEL: string;
static CHANGE: string;
static CLEAR: string;
static CLOSE: string;
static COMPLETE: string;
static CONNECT: string;
static COPY: string;
static CUT: string;
static DEACTIVATE: string;
static ENTER_FRAME: string;
static FRAME_CONSTRUCTED: string;
static EXIT_FRAME: string;
static FRAME_LABEL: string;
static ID3: string;
static INIT: string;
static MOUSE_LEAVE: string;
static OPEN: string;
static PASTE: string;
static REMOVED: string;
static REMOVED_FROM_STAGE: string;
static RENDER: string;
static RESIZE: string;
static SCROLL: string;
static TEXT_INTERACTION_MODE_CHANGE: string;
static SELECT: string;
static SELECT_ALL: string;
static SOUND_COMPLETE: string;
static TAB_CHILDREN_CHANGE: string;
static TAB_ENABLED_CHANGE: string;
static TAB_INDEX_CHANGE: string;
static UNLOAD: string;
static FULLSCREEN: string;
static CONTEXT3D_CREATE: string;
static TEXTURE_READY: string;
static VIDEO_FRAME: string;
static SUSPEND: string;
static CHANNEL_MESSAGE: string;
static CHANNEL_STATE: string;
static WORKER_STATE: string;
private _type;
private _bubbles;
private _cancelable;
private _target;
private _currentTarget;
_stopImmediatePropagation: boolean;
constructor(type: string, bubbles?: boolean, cancelable?: boolean);
formatToString(className: string, ...args: any[]): string;
private ctor;
clone(): AEvent;
toString(): string;
get type(): string;
get bubbles(): boolean;
get cancelable(): boolean;
get target(): any;
set target(value: any);
get currentTarget(): any;
set currentTarget(value: any);
get eventPhase(): number;
stopPropagation(): void;
stopImmediatePropagation(): void;
preventDefault(): void;
isDefaultPrevented(): boolean;
}