Refactoring code module 09_scholarship

This commit is contained in:
STW_TTTY\stwtt 2024-09-10 12:01:37 +07:00
parent e9f9690c51
commit 59393536f7
4 changed files with 39 additions and 29 deletions

View file

@ -3,4 +3,11 @@ interface DataOptions {
name: string;
}
export type { DataOptions };
interface Scholarship {
id: string;
scholarshipYear: number;
scholarshipType: string;
fundType: string;
}
export type { DataOptions,Scholarship };