devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
25 lines (24 loc) • 768 B
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\internal\_summaryOptionsPageUtils.d.ts)
* Version: 25.1.3
* Build date: Jun 26, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import * as ko from 'knockout';
export interface ISummaryOptions {
columnName: string;
flags: number;
}
export declare class SummaryOptionsWrapper {
private _name;
private static _getNumber;
constructor(name: string, displayName: string);
columnName: string;
avg: ko.Observable<boolean>;
count: ko.Observable<boolean>;
max: ko.Observable<boolean>;
min: ko.Observable<boolean>;
sum: ko.Observable<boolean>;
getOptions(): ISummaryOptions;
}