igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
24 lines (23 loc) • 689 B
TypeScript
import { Base, Type } from "./type";
import { ISummaryResult } from "./ISummaryResult";
import { DataSourceSummaryOperand } from "./DataSourceSummaryOperand";
/**
* @hidden
*/
export declare class DefaultSummaryResult extends Base implements ISummaryResult {
static $t: Type;
constructor(a: string, b: DataSourceSummaryOperand, c: any);
private a;
private e;
private d;
private b;
private c;
get groupKey(): any[];
set groupKey(a: any[]);
get propertyName(): string;
get operand(): DataSourceSummaryOperand;
get value(): any;
set value(a: any);
get summaryIndex(): number;
set summaryIndex(a: number);
}