21 lines
896 B
TypeScript
21 lines
896 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.
|
|
*/
|