igniteui-react-core
Version:
Ignite UI React Core.
19 lines (18 loc) • 504 B
TypeScript
import { Type } from "./type";
/**
* Enumerates possible display modes for section headers.
*/
export declare enum DataSourceSectionHeaderDisplayMode {
/**
* Each group is preceded by a single section header that combines multiple groups into one.
*/
Combined = 0,
/**
* Each group may be preceded by multiple section headers, one for each group.
*/
Split = 1
}
/**
* @hidden
*/
export declare let DataSourceSectionHeaderDisplayMode_$type: Type;