import { COABalancesFilterProjectView } from '../../commonStateTypes/coaBalance/coaBalancesFilterProjectView'; import { ID } from '../../commonStateTypes/common'; import { DataAvailable } from '../../commonStateTypes/dataAvailable'; import { CalculatedSection } from '../../commonStateTypes/selectorTypes/selectorTypes'; import { SelectorReport } from '../../commonStateTypes/viewAndReport/viewAndReport'; import { Project } from '../../entity/project/projectState'; import { SectionProjectViewReport } from '../../entity/sectionProjectView/sectionProjectViewSelectorTypes'; import { OpExClassesViewCalculatedSectionID, OpExClassesViewSectionID } from '../opExClassesView/opExClassesViewSelectorTypes'; import { OpExProjectViewUIState } from './opExProjectViewState'; export interface OpExProjectViewReport extends SelectorReport { calculatedSections: Record; filter: COABalancesFilterProjectView; idsInOrder: (OpExClassesViewSectionID | OpExClassesViewCalculatedSectionID)[]; projects: Project[]; projectsToFilterOut: ID[]; sections: Record; uiState: OpExProjectViewUIState; dataAvailable?: DataAvailable; }