igniteui-react-core
Version:
Ignite UI React Core.
18 lines (17 loc) • 414 B
TypeScript
import { Type } from "./type";
import { DataSourceSummaryOperand } from "./DataSourceSummaryOperand";
/**
* @hidden
*/
export interface ISummaryResult {
groupKey: any[];
readonly propertyName: string;
readonly operand: DataSourceSummaryOperand;
value: any;
summaryIndex: number;
shouldDisplay: boolean;
}
/**
* @hidden
*/
export declare let ISummaryResult_$type: Type;