React Common Types - events - NativeEventInfo
A type that contains fields common for all events (component, element, model) and the event field.
import { NativeEventInfo } from "devextreme/common/core/events"
Type:
Do not use EventInfo if you specify this type.
interface NativeEventInfo<TComponent, TNativeEvent = Event> {
readonly component: TComponent;
readonly element: DxElement;
readonly event?: EventObject & TNativeEvent;
}
interface EventObject {
currentTarget: Element;
data: any;
delegateTarget: Element;
target: Element;
isDefaultPrevented(): boolean;
isImmediatePropagationStopped(): boolean;
isPropagationStopped(): boolean;
preventDefault(): void;
stopImmediatePropagation(): void;
stopPropagation(): void;
}
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.