UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

19 lines (18 loc) 669 B
import { AbstractColDef } from "./colDef"; import { IEventEmitter } from "../interfaces/iEventEmitter"; import { ColumnGroup } from "./columnGroup"; export interface IHeaderColumn extends IEventEmitter { getUniqueId(): string; getActualWidth(): number; getMinWidth(): number | null | undefined; getLeft(): number | null; getOldLeft(): number | null; getDefinition(): AbstractColDef | null; getColumnGroupShow(): string | undefined; getParent(): IHeaderColumn; isResizable(): boolean; setParent(parent: ColumnGroup | null): void; isEmptyGroup(): boolean; isMoving(): boolean; getPinned(): string | null | undefined; }