ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
12 lines (11 loc) • 635 B
TypeScript
import type { Component } from '../widgets/component';
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export interface IRowGroupPanelBuilder {
/**
* @param horizontal rendered as a header drop zone vs. embedded in the tool panel.
* @param embedded true when the drop zone is hosted inside another focus container
* (e.g. the Toolbar) and should not register its own tab hand-off.
*/
createRowGroupDropZone(horizontal: boolean, embedded?: boolean): Component;
createPivotDropZone(horizontal: boolean, embedded?: boolean): Component;
}