From 1b5bf18521a428f042910903df5a2e4b578362f9 Mon Sep 17 00:00:00 2001 From: veloii <85405932+veloii@users.noreply.github.com> Date: Tue, 28 May 2024 22:53:31 +0100 Subject: [PATCH] types: add mark for homework --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 29ec6dd..934cf86 100644 --- a/src/types.ts +++ b/src/types.ts @@ -204,7 +204,7 @@ export interface Homework { status: { id: number; state: "not_completed" | "late" | "completed" | null; - mark: unknown | null; + mark: string | null; mark_relative: number; ticked: "yes" | "no"; allow_attachments: boolean;