fix(HistoriaClinica): agregar handlers de otrosLaboratorios en store y corregir ReferenceError

This commit is contained in:
2026-08-12 22:18:27 +00:00
parent ed31b23159
commit 6fb825778f
12 changed files with 851 additions and 32 deletions
+9
View File
@@ -119,6 +119,15 @@ export interface ResultadoLaboratorio {
estado: 'Normal' | 'Alto' | 'Bajo' | 'Crítico';
}
export interface OtroLaboratorio {
id: string;
pacienteId: string;
internacionId?: string;
fecha: string;
hora?: string;
observaciones: string;
}
export interface Glucemia {
id: string;
pacienteId: string;