UNPKG

@progress/kendo-angular-pivotgrid

Version:
22 lines (21 loc) 710 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * @hidden */ export class PivotGridState { columnAxes; rowAxes; measureAxes; sort; filter; constructor(columnAxes, rowAxes, measureAxes, sort, filter) { this.columnAxes = columnAxes; this.rowAxes = rowAxes; this.measureAxes = measureAxes; this.sort = sort; this.filter = filter; } }