UNPKG

290 BPlain TextView Raw
1
2// Implemented by Column and OriginalColumnGroup. Allows the groups to contain a list of this type for it's children.
3// See the note at the top of Column class.
4export interface OriginalColumnGroupChild {
5 isVisible(): boolean;
6 getColumnGroupShow(): string;
7 getId(): string;
8}