ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
12 lines (11 loc) • 826 B
TypeScript
import type { ManagedFocusCallbacks, StopPropagationCallbacks } from '../agStack/focus/agManagedFocusFeature';
import { AgManagedFocusFeature } from '../agStack/focus/agManagedFocusFeature';
import type { BeanCollection } from '../context/context';
import type { AgEventTypeParams } from '../events';
import type { GridOptionsWithDefaults } from '../gridOptionsDefault';
import type { GridOptionsService } from '../gridOptionsService';
import type { AgGridCommon } from '../interfaces/iCommon';
export declare const STOP_PROPAGATION_CALLBACKS: StopPropagationCallbacks;
export declare class ManagedFocusFeature extends AgManagedFocusFeature<BeanCollection, GridOptionsWithDefaults, AgEventTypeParams, AgGridCommon<any, any>, GridOptionsService> {
constructor(eFocusable: HTMLElement, callbacks?: ManagedFocusCallbacks);
}