/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * @hidden */ export interface KendoPointer { onPointerDown?: (args: KendoPointerEvent) => void; onPointerMove?: (args: KendoPointerEvent) => void; onPointerUp?: (args: KendoPointerEvent) => void; onPointerCancel?: (args: KendoPointerEvent) => void; onGotPointerCapture?: (args: KendoPointerEvent) => void; onLostPointerCapture?: (args: KendoPointerEvent) => void; onPointerEnter?: (args: KendoPointerEvent) => void; onPointerOver?: (args: KendoPointerEvent) => void; onPointerLeave?: (args: KendoPointerEvent) => void; onPointerOut?: (args: KendoPointerEvent) => void; } /** * @hidden */ export interface KendoPointerEvent { syntheticEvent: React.PointerEvent; target: T; }