igniteui-react-core
Version:
Ignite UI React Core.
84 lines (83 loc) • 2.76 kB
TypeScript
import { Description } from "./Description";
import { Type } from "./type";
/**
* @hidden
*/
export declare abstract class BaseDataSourceDescription extends Description {
static $t: Type;
protected get_type(): string;
get type(): string;
constructor();
private q;
get isReadOnly(): boolean;
set isReadOnly(a: boolean);
private p;
get isBatchingEnabled(): boolean;
set isBatchingEnabled(a: boolean);
private an;
get actualCount(): number;
set actualCount(a: number);
private ao;
get firstVisibleIndexRequested(): number;
set firstVisibleIndexRequested(a: number);
private ap;
get lastVisibleIndexRequested(): number;
set lastVisibleIndexRequested(a: number);
private n;
get deferAutoRefresh(): boolean;
set deferAutoRefresh(a: boolean);
private h;
get primaryKey(): string[];
set primaryKey(a: string[]);
private i;
get propertiesRequested(): string[];
set propertiesRequested(a: string[]);
private j;
get schemaIncludedProperties(): string[];
set schemaIncludedProperties(a: string[]);
private ax;
get sectionHeaderDisplayMode(): string;
set sectionHeaderDisplayMode(a: string);
private r;
get isSectionCollapsable(): boolean;
set isSectionCollapsable(a: boolean);
private t;
get isSectionExpandedDefault(): boolean;
set isSectionExpandedDefault(a: boolean);
private o;
get includeSummaryRowsInSection(): boolean;
set includeSummaryRowsInSection(a: boolean);
private v;
get isSectionSummaryRowsAtBottom(): boolean;
set isSectionSummaryRowsAtBottom(a: boolean);
private u;
get isSectionHeaderNormalRow(): boolean;
set isSectionHeaderNormalRow(a: boolean);
private s;
get isSectionContentVisible(): boolean;
set isSectionContentVisible(a: boolean);
private x;
get shouldEmitSectionHeaders(): boolean;
set shouldEmitSectionHeaders(a: boolean);
private w;
get shouldEmitSectionFooters(): boolean;
set shouldEmitSectionFooters(a: boolean);
private y;
get shouldEmitShiftedRows(): boolean;
set shouldEmitShiftedRows(a: boolean);
private z;
get shouldEmitSummaryRows(): boolean;
set shouldEmitSummaryRows(a: boolean);
private aw;
get schemaChangedRef(): string;
set schemaChangedRef(a: string);
private av;
get rowExpansionChangedRef(): string;
set rowExpansionChangedRef(a: string);
private au;
get rootSummariesChangedRef(): string;
set rootSummariesChangedRef(a: string);
private at;
get propertiesRequestedChangedRef(): string;
set propertiesRequestedChangedRef(a: string);
}