igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
28 lines (27 loc) • 848 B
TypeScript
import { Base, Type } from "./type";
import { ISummaryResult } from "./ISummaryResult";
import { DataSourceSummaryOperand } from "./DataSourceSummaryOperand";
/**
* @hidden
*/
export declare class GenericSummaryResult extends Base implements ISummaryResult {
static $t: Type;
private _groupKey;
get groupKey(): any[];
set groupKey(a: any[]);
private _propertyName;
get propertyName(): string;
set propertyName(a: string);
private _operand;
get operand(): DataSourceSummaryOperand;
set operand(a: DataSourceSummaryOperand);
private _value;
get value(): any;
set value(a: any);
private _summaryIndex;
get summaryIndex(): number;
set summaryIndex(a: number);
private _shouldDisplay;
get shouldDisplay(): boolean;
set shouldDisplay(a: boolean);
}