diff --git a/src/types.ts b/src/types.ts index 8a698aa..0307916 100644 --- a/src/types.ts +++ b/src/types.ts @@ -446,7 +446,8 @@ export interface GetAttendanceOptions { export interface AttendancePeriod { code: string; - status: "present" | "ignore"; + // TODO: add the other statues + status: "present" | "ignore" | string & {}; late_minutes: number | string; lesson_name?: string; room_name?: string;