Interface for the payload of a ComponentEvent.

interface EventPayload {
    target?: EventTarget;
    type?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

target?: EventTarget

The target of the event.

type?: string

The type of the event.