ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
9 lines (8 loc) • 613 B
TypeScript
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type HorizontalSection = 'left' | 'center' | 'right';
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type HorizontalSectionMap<T> = Record<HorizontalSection, T>;
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type VerticalSection = 'top' | 'bottom';
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type VerticalSectionMap<T> = Record<VerticalSection, T>;