UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

17 lines (16 loc) 385 B
import { Type } from "./type"; import { DataSourceSummaryOperand } from "./DataSourceSummaryOperand"; /** * @hidden */ export interface ISummaryResult { groupKey: any[]; readonly propertyName: string; readonly operand: DataSourceSummaryOperand; value: any; summaryIndex: number; } /** * @hidden */ export declare let ISummaryResult_$type: Type;