1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 03:56:59 +00:00

Update types.ts

fix: last_id can be number or boolean
This commit is contained in:
Veloi 2023-09-23 17:58:04 +01:00 committed by GitHub
parent 97077a610c
commit c304dca94d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -138,7 +138,7 @@ export type ActivityResponseData = Array<ActivityPoint>;
interface ActivityResponseMeta {
start_date: string;
end_date: string;
last_id: number;
last_id: number | boolean;
step_size: string;
detention_alias_uc: string;
}