diff --git a/src/utils/gpa-utils.ts b/src/utils/gpa-utils.ts index 7b27e71..713bc29 100644 --- a/src/utils/gpa-utils.ts +++ b/src/utils/gpa-utils.ts @@ -2,6 +2,13 @@ import Course from '@/logic/course'; import {Assignment} from '@/components/app/app'; +export interface Scale +{ + min: number + letter: string + gp: number +} + /** * This is an utility class to calculate GPA. */