From 5e6db4124a934a3a3e66aa0870e39bee204d14f8 Mon Sep 17 00:00:00 2001 From: veloii <85405932+veloii@users.noreply.github.com> Date: Mon, 27 May 2024 22:43:11 +0100 Subject: [PATCH] types: add TODO disclaimer for attendance status and open up type --- src/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;