interface AbstractEventObject {
    cy: cytoscape.Core;
    isDefaultPrevented: (() => boolean);
    isImmediatePropagationStopped: (() => boolean);
    isPropagationStopped: (() => boolean);
    namespace: string;
    preventDefault: (() => void);
    stopImmediatePropagation: (() => void);
    stopPropagation: (() => void);
    target: any;
    timeStamp: number;
    type: UserInputDeviceEventName | UserInputDeviceEventNameExt;
}

Hierarchy (view full)

Properties

a reference to the corresponding core Core

isDefaultPrevented: (() => boolean)
isImmediatePropagationStopped: (() => boolean)
isPropagationStopped: (() => boolean)
namespace: string

the event namespace string (e.g. "foo" for "foo.tap")

preventDefault: (() => void)
stopImmediatePropagation: (() => void)
stopPropagation: (() => void)
target: any

indicates the element or core that first caused the event

timeStamp: number

Unix epoch time of event in milliseconds

the event type string (e.g. "tap")