@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
29 lines (28 loc) • 1.17 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2024 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { BaseEvent } from './base-event';
import * as i0 from "@angular/core";
/**
* @hidden
*/
export declare abstract class PreventableEvent extends BaseEvent {
private prevented;
/**
* Prevents the default action for a specified event.
* In this way, the source component suppresses
* the built-in behavior that follows the event.
*/
preventDefault(): void;
/**
* Returns `true` if the event was prevented
* by any of its subscribers.
*
* @returns `true` if the default action was prevented.
* Otherwise, returns `false`.
*/
isDefaultPrevented(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<PreventableEvent, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<PreventableEvent, never, never, {}, {}, never, never, false, never>;
}