ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
14 lines (13 loc) • 497 B
TypeScript
import { PopupComponent } from "../../widgets/popupComponent";
import { ICellEditorComp, ICellEditorParams } from "../../interfaces/iCellEditor";
export declare class CheckboxCellEditor extends PopupComponent implements ICellEditorComp {
constructor();
private eCheckbox;
private params;
init(params: ICellEditorParams<any, boolean>): void;
getValue(): boolean | undefined;
focusIn(): void;
afterGuiAttached(): void;
isPopup(): boolean;
private setAriaLabel;
}