UNPKG

@progress/kendo-react-pivotgrid

Version:

React PivotGrid (also called Pivot Table) can be data-bound to an OLAP service and customized extensively. KendoReact PivotGrid package

19 lines (18 loc) 934 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { HeadersAction, PivotGridAxis, AxisDataItem } from '@progress/kendo-pivotgrid-common'; import * as React from 'react'; export { HEADERS_ACTION } from '@progress/kendo-pivotgrid-common'; /** * @hidden */ export declare const useHeaders: (prop: PivotGridAxis[], tree: AxisDataItem, onChange?: ((value: PivotGridAxis[], event: React.SyntheticEvent) => void) | undefined) => [PivotGridAxis[], (action: Omit<HeadersAction, 'tree'>, event: React.SyntheticEvent) => void]; /** * @hidden */ type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;