NeoScan_Physician/app/modules/CaseReview/redux/caseReviewSelectors.ts
2025-07-21 18:47:22 +05:30

21 lines
908 B
TypeScript

/*
* File: caseReviewSelectors.ts
* Description: Selectors for CaseReview redux state
* Design & Developed by Tech4Biz Solutions
* Copyright (c) Spurrin Innovations. All rights reserved.
*/
import { RootState } from '../../../../app/redux/rootReducer';
export const selectSelectedCase = (state: RootState) => state.caseReview.selectedCase;
export const selectCaseReviewLoading = (state: RootState) => state.caseReview.loading;
export const selectCaseReviewError = (state: RootState) => state.caseReview.error;
export const selectDICOMImages = (state: RootState) => state.dicom.images;
export const selectAIFindings = (state: RootState) => state.aiAnalysis.findings;
export const selectAIConfidence = (state: RootState) => state.aiAnalysis.confidence;
/*
* End of File: caseReviewSelectors.ts
* Design & Developed by Tech4Biz Solutions
* Copyright (c) Spurrin Innovations. All rights reserved.
*/