1 | import {AbstractColDef} from "./colDef";
|
2 | import {IEventEmitter} from "../interfaces/iEventEmitter";
|
3 | import {ColumnGroup} from "./columnGroup";
|
4 |
|
5 |
|
6 |
|
7 | export interface ColumnGroupChild extends IEventEmitter {
|
8 | getUniqueId(): string;
|
9 | getActualWidth(): number;
|
10 | getMinWidth(): number;
|
11 | getLeft(): number;
|
12 | getOldLeft(): number;
|
13 | getDefinition(): AbstractColDef;
|
14 | getColumnGroupShow(): string;
|
15 | getParent(): ColumnGroupChild;
|
16 | isResizable(): boolean;
|
17 | setParent(parent: ColumnGroup): void;
|
18 | isEmptyGroup(): boolean;
|
19 | isMoving(): boolean;
|
20 | }
|