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 { PandLReportViewCalculatedSectionID, PandLReportViewSectionID } from '../profitAndLossClassesView/profitAndLossClassesViewSelectorTypes'; import { ProfitAndLossProjectViewUIState } from './profitAndLossProjectViewState'; export interface ProfitAndLossProjectViewReport extends SelectorReport { calculatedSections: Record; filter: COABalancesFilterProjectView; idsInOrder: (PandLReportViewSectionID | PandLReportViewCalculatedSectionID)[]; projects: Project[]; projectsToFilterOut: ID[]; sections: Record; uiState: ProfitAndLossProjectViewUIState; dataAvailable?: DataAvailable; }