UNPKG

785 BTypeScriptView Raw
1// Type definitions for ag-grid v18.1.2
2// Project: http://www.ag-grid.com/
3// Definitions by: Niall Crosby <https://github.com/ag-grid/>
4import { ICellEditorComp } from "./iCellEditor";
5import { ICellEditorParams } from "./iCellEditor";
6import { Component } from "../../widgets/component";
7export interface ILargeTextEditorParams extends ICellEditorParams {
8 maxLength: number;
9 rows: number;
10 cols: number;
11}
12export declare class LargeTextCellEditor extends Component implements ICellEditorComp {
13 private static TEMPLATE;
14 private params;
15 private textarea;
16 private focusAfterAttached;
17 constructor();
18 init(params: ILargeTextEditorParams): void;
19 private onKeyDown(event);
20 afterGuiAttached(): void;
21 getValue(): any;
22 isPopup(): boolean;
23}