UNPKG

react-application-core

Version:

A react-based application core for the business applications.

9 lines (8 loc) 547 B
import { IAllGroupsExpandedWrapper, IExpandedGroupsWrapper, IFilterChangesWrapper, IGridConfigurationWrapper, IKeyValue } from '../../definitions.interface'; import { IContainerProps, IReduxListHolderEntity, IGridProps } from '../../definition'; export interface IGridContainerProps extends IContainerProps, IReduxListHolderEntity, IGridConfigurationWrapper<IGridProps> { } export interface IGridState extends IFilterChangesWrapper, IExpandedGroupsWrapper<IKeyValue>, IAllGroupsExpandedWrapper { page?: number; closed?: boolean; }