UNPKG

@progress/kendo-angular-dropdowns

Version:
18 lines (17 loc) 506 B
/** * @hidden */ export declare class PreventableEvent { /** * 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; /** * If the event is prevented by any of its subscribers, returns `true`. * * @returns `true` if the default action was prevented. Otherwise, returns `false`. */ isDefaultPrevented(): boolean; private prevented; }