@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
27 lines (26 loc) • 795 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* @hidden
*/
export declare enum EXPANSION_ACTION {
toggle = "EXPAND_TOGGLE",
expand = "EXPAND_EXPAND",
collapse = "EXPAND_COLLAPSE"
}
/**
* @hidden
*/
export type ExpansionAction = {
type: EXPANSION_ACTION;
payload: any;
};
/**
* @hidden
*/
export declare const useExpansion: (defaultValue: never[] | undefined, callback: any, target: any, compare?: (a: any, b: any) => boolean) => any[];