[+] Create interface for scale

This commit is contained in:
Hykilpikonna
2019-11-06 21:27:19 -05:00
parent beb4155aab
commit adf7af6b84
+7
View File
@@ -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.
*/