1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00

fix: type def ActivityPoint note is now nullable

This commit is contained in:
Veloi 2023-09-23 17:20:36 +01:00 committed by GitHub
parent 60da10cb3e
commit 1d6c3f377e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -126,7 +126,7 @@ export interface ActivityPoint {
lesson_name: string | null; lesson_name: string | null;
teacher_name: string; teacher_name: string;
room_name: string | null; room_name: string | null;
note: string; note: string | null;
_can_delete: boolean; _can_delete: boolean;
badges: string | undefined; badges: string | undefined;
detention_date: string | null; detention_date: string | null;