Remove unused files
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
/**
|
||||
* Dose Correction Suggestion Engine
|
||||
*
|
||||
* Generates dose correction suggestions when deviations occur from the planned
|
||||
* medication schedule. Calculates required dose adjustments and optimal timing
|
||||
* to maintain therapeutic concentrations.
|
||||
*
|
||||
* @author Andreas Weyer
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
import { timeToMinutes } from './timeUtils';
|
||||
import { calculateCombinedProfile } from './calculations';
|
||||
import type { DayGroup, SteadyStateConfig, PkParams } from '../constants/defaults';
|
||||
|
||||
interface SuggestionResult {
|
||||
text?: string;
|
||||
time?: string;
|
||||
dose?: string;
|
||||
isAdditional?: boolean;
|
||||
originalDose?: string;
|
||||
dayOffset?: number;
|
||||
}
|
||||
|
||||
interface Translations {
|
||||
noSuitableNextDose: string;
|
||||
noSignificantCorrection: string;
|
||||
}
|
||||
|
||||
export const generateSuggestion = (
|
||||
days: DayGroup[],
|
||||
steadyStateConfig: SteadyStateConfig,
|
||||
pkParams: PkParams
|
||||
): SuggestionResult | null => {
|
||||
// Suggestion feature is deprecated in day-based system
|
||||
// This function is kept for backward compatibility but returns null
|
||||
return null;
|
||||
};
|
||||
Reference in New Issue
Block a user