@awayjs/core
Version:
AwayJS core classes
29 lines • 654 B
TypeScript
export declare class EventBase {
/**
* Type of event
* @property type
* @type String
*/
type: string;
/**
* Reference to target object
* @property target
* @type Object
*/
target: any;
/**
* Reference to currentTarget object
* @property currentTarget
* @type Object
*/
currentTarget: any;
constructor(type: string);
/**
* Clones the current event.
* @return An exact duplicate of the current event.
*/
clone(): EventBase;
_iAllowedToPropagate: boolean;
_iAllowedToImmediatlyPropagate: boolean;
}
//# sourceMappingURL=EventBase.d.ts.map