fixed types

This commit is contained in:
2026-02-16 18:45:05 -06:00
parent 05b766afe1
commit c989b54fdc
5 changed files with 25 additions and 60 deletions
+19 -1
View File
@@ -7,4 +7,22 @@ interface Student {
nombre: string;
carrera: Carrera;
credito: number;
}
}
export interface Sancion {
id_sancion: number;
sancion: string;
duracion: number;
}
export interface Alumno {
id_cuenta: number;
nombre: string;
credito: number;
}
export interface AlumnoSancion {
id_alumno_sancion: number;
fecha_inicio: string;
sancion: Sancion;
}