@progress/kendo-angular-map
Version:
Kendo UI Map for Angular
20 lines (19 loc) • 807 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { MapResetEvent } from '@progress/kendo-charts';
import { MapComponent } from '../map.component';
import { BaseEvent } from './base-event';
/**
* Arguments for the `reset` event.
* Fires when the map resets.
*
* This typically occurs on initial load and after a zoom/center change.
*/
export declare class ResetEvent extends BaseEvent implements MapResetEvent {
/**
* @hidden
*/
constructor(_: any, sender: MapComponent);
}