fixed types
This commit is contained in:
+19
-1
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user