/** * Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { IPrioritySignal } from "../IPrioritySignal"; import { IEvent } from "./IEvent"; /** * * @see org.osflash.signals.events.IEvent * Documentation for the event interface being maintained in IEvent to avoid duplication for now. */ export declare class GenericEvent implements IEvent { protected _bubbles: boolean; protected _target: any; protected _currentTarget: any; protected _signal: IPrioritySignal; constructor(bubbles?: boolean); /** @inheritDoc */ get signal(): IPrioritySignal; set signal(value: IPrioritySignal); /** @inheritDoc */ get target(): any; set target(value: any); /** @inheritDoc */ get currentTarget(): any; set currentTarget(value: any); /** @inheritDoc */ get bubbles(): boolean; set bubbles(value: boolean); /** @inheritDoc */ clone(): IEvent; }