diff --git a/src/utils/json-utils.ts b/src/utils/json-utils.ts index 85502ac..f245b67 100644 --- a/src/utils/json-utils.ts +++ b/src/utils/json-utils.ts @@ -1,3 +1,19 @@ +/** + * Objects of this interface represent assignment grades. + */ +interface Grade +{ + type: string, + description: string, + date: string, + complete: string, + include: boolean, + display: boolean, + + scoreMax: number, + score: number +} + export default class JsonUtils { }