From bfbad3559b4f8aaf414491d18ded83ceeb5bb424 Mon Sep 17 00:00:00 2001 From: veloii <85405932+veloii@users.noreply.github.com> Date: Wed, 29 May 2024 17:53:59 +0100 Subject: [PATCH] types: change for_pupils to string[] from unknown[] --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 934cf86..7c8ed41 100644 --- a/src/types.ts +++ b/src/types.ts @@ -378,7 +378,7 @@ export interface Announcement { filename: string; url: string; }[]; - for_pupils: unknown[]; + for_pupils: string[]; comment_visibility: string; allow_comments: "yes" | "no"; allow_reactions: "yes" | "no";