UNPKG

@progress/kendo-react-map

Version:
33 lines (32 loc) 1.01 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { MapLayer, MapShapeClickEvent } from '@progress/kendo-charts'; import { Element } from '@progress/kendo-drawing'; import { Map } from '../Map.js'; import { BaseEvent } from './base-event.js'; /** * Fires when a shape is clicked or tapped. */ export declare class ShapeClickEvent extends BaseEvent implements MapShapeClickEvent { /** * The shape layer instance. */ layer: MapLayer; /** * The shape instance. */ shape: Element; /** * The source DOM event instance */ originalEvent: any; /** * @hidden */ constructor(e: MapShapeClickEvent, target: Map); }