Skip to content

Latest commit

 

History

History
164 lines (88 loc) · 3.6 KB

core_BaseEvent.BaseEvent.md

File metadata and controls

164 lines (88 loc) · 3.6 KB

@interactjs / core/BaseEvent / BaseEvent

Class: BaseEvent<T>

core/BaseEvent.BaseEvent

Type parameters

Name Type
T extends ActionName | null = never

Hierarchy

Table of contents

Properties

Methods

Properties

currentTarget

currentTarget: Node

Defined in

core/BaseEvent.ts:8


immediatePropagationStopped

immediatePropagationStopped: boolean = false

Defined in

core/BaseEvent.ts:13


interactable

interactable: Interactable

Defined in

core/BaseEvent.ts:9


interaction

interaction: InteractionProxy<T>

Defined in

core/BaseEvent.ts:40


propagationStopped

propagationStopped: boolean = false

Defined in

core/BaseEvent.ts:14


target

target: EventTarget

Defined in

core/BaseEvent.ts:7


timeStamp

timeStamp: number

Defined in

core/BaseEvent.ts:12


type

type: string

Defined in

core/BaseEvent.ts:6

Methods

preventDefault

preventDefault(): void

Returns

void

Defined in

core/BaseEvent.ts:20


stopImmediatePropagation

stopImmediatePropagation(): void

Don't call listeners on the remaining targets

Returns

void

Defined in

core/BaseEvent.ts:32


stopPropagation

stopPropagation(): void

Don't call any other listeners (even on the current target)

Returns

void

Defined in

core/BaseEvent.ts:25