import { ListSorting } from '../configuration-model/sorting.model'; export interface ListState { ListKey: string; ViewKey?: string; SearchString?: string; SmartSearchQuery?: any; Sorting?: ListSorting; PageSize?: number; PageIndex?: number; PagerType?: ListPagerType; ItemSelection?: ListItemSelection; RecycleBinMode?: boolean; TopScrollIndex?: number; DynamicFilter?: any; Parameters?: ListParametersData; ContainedResourceList?: any[]; } interface ListItemSelection { SelectAll: boolean; Items: string[]; } export declare type ListPagerType = 'Scroll' | 'Pages'; export interface ListParametersData { [key: string]: any; } export {};