/** * Available datasource types * @remarks - This type is used to define what kind of datasource will be used in components like entity manager. * Currently there are two options: 'client' for `grid-pro-client-side-datasource` and 'server' for `grid-pro-server-side-datasource` * @public */ export type DatasourceType = 'client' | 'server'; /** * Available paging modes for server-side datasources * @remarks - This type defines the paging approach used for server-side data fetching * - 'viewBased': Uses VIEW_NUMBER and NEXT_VIEW (1 by 1 increment) * - 'offsetBased': Uses OFFSET and NEXT_OFFSET (based on maxRows increment) * @public */ export type PagingMode = 'viewBased' | 'offsetBased'; //# sourceMappingURL=datasource.types.d.ts.map