UNPKG

ag-grid

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

21 lines (20 loc) 710 B
// Type definitions for ag-grid v18.1.2 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby <https://github.com/ag-grid/> import { AbstractColDef } from "./colDef"; import { IEventEmitter } from "../interfaces/iEventEmitter"; import { ColumnGroup } from "./columnGroup"; export interface ColumnGroupChild extends IEventEmitter { getUniqueId(): string; getActualWidth(): number; getMinWidth(): number; getLeft(): number; getOldLeft(): number; getDefinition(): AbstractColDef; getColumnGroupShow(): string; getParent(): ColumnGroupChild; isResizable(): boolean; setParent(parent: ColumnGroup): void; isEmptyGroup(): boolean; isMoving(): boolean; }