add types

This commit is contained in:
IO420
2025-10-02 01:41:41 -06:00
parent d65efc56ab
commit 08401ce82a
4 changed files with 14 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
interface Carrera {
carrera: string;
}
interface Student {
id_cuenta: number;
nombre: string;
carrera: Carrera;
credito: number;
}