UNPKG

igniteui-react-core

Version:
17 lines (16 loc) 419 B
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;