igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
17 lines (16 loc) • 419 B
TypeScript
import { Type } from "./type";
import { ISummaryResult } from "./ISummaryResult";
/**
* @hidden
*/
export interface ISectionInformation {
readonly startIndex: number;
readonly endIndex: number;
readonly groupKeyProperties: string[];
readonly groupKeyValues: any[];
readonly summaryResults: ISummaryResult[];
}
/**
* @hidden
*/
export declare let ISectionInformation_$type: Type;