devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
20 lines (19 loc) • 787 B
TypeScript
/**
* DevExpress HTML/JS Reporting (viewer\internal\_sortingProcessor.d.ts)
* Version: 24.2.7
* Build date: Apr 29, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { IKeyValuePair } from '../../common/types';
import { ISortingFieldInfo } from './_previewRequestWrapper';
import { ISortingData } from '../utils/utils';
export declare class SortingProcessor {
private _getSortingStage;
constructor(_getSortingStage: () => Array<IKeyValuePair<Array<ISortingFieldInfo>>>);
doSorting(sortData: ISortingData, shiftKey?: boolean, ctrlKey?: boolean): boolean;
private _applySorting;
private _appendSorting;
private _detachSorting;
private _changeSortOrder;
}