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:
parent
60da10cb3e
commit
1d6c3f377e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue