mirror of
https://github.com/classchartsapi/classcharts-api-js.git
synced 2026-05-14 11:58:13 +00:00
Update types.ts
fix: last_seen_date and first_seen_date on homework to be nullable
This commit is contained in:
parent
c304dca94d
commit
2543f22b5d
1 changed files with 2 additions and 2 deletions
|
|
@ -192,8 +192,8 @@ export interface Homework {
|
|||
mark_relative: number;
|
||||
ticked: "yes" | "no";
|
||||
allow_attachments: boolean;
|
||||
first_seen_date: string;
|
||||
last_seen_date: string;
|
||||
first_seen_date: string | null;
|
||||
last_seen_date: string | null;
|
||||
attachments: Array<unknown>;
|
||||
has_feedback: boolean;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue