igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
24 lines (23 loc) • 699 B
TypeScript
import { Base, Type } from "./type";
import { ISectionInformation } from "./ISectionInformation";
import { ISummaryResult } from "./ISummaryResult";
/**
* @hidden
*/
export declare class GenericSectionInformation extends Base implements ISectionInformation {
static $t: Type;
private _startIndex;
get startIndex(): number;
set startIndex(a: number);
private _endIndex;
get endIndex(): number;
set endIndex(a: number);
get groupKeyProperties(): string[];
get groupKeyValues(): any[];
get summaryResults(): ISummaryResult[];
private a;
private b;
private c;
d(a: string, b: any): void;
e(a: ISummaryResult): void;
}