Interface ImaEvent

  • This page documents an event raised by the IMA SDK, following the structure of TypeScript documentation.

  • The ImaEvent has three properties: currentTarget, target, and type, with the first two being optional and able to be null or an object, and the last one being a string.

  • There are two methods available for ImaEvent: preventDefault and stopPropagation, both of which return void.

  • Suggestions and feedback regarding the reference documentation can be shared on the IMA technical forum.


An event raised by the IMA SDK.
Properties
currentTarget?
Deprecated. 
target?
The object on which the event was raised (and to which a listener was added).
type
Methods
preventDefault
Deprecated. 

Properties


Optional currentTarget

currentTarget?: object

Optional target

target?: object
The object on which the event was raised (and to which a listener was added).

type

type: string

Methods


preventDefault

preventDefault(): void