1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00
This commit is contained in:
sjaanus 2025-07-31 10:44:18 +03:00
parent 08506bb633
commit b696ce0d58
No known key found for this signature in database
GPG Key ID: 20E007C0248BA7FF

View File

@ -0,0 +1,15 @@
export type WeekData = {
archivedFlags: number;
totalCreatedFlags: number;
createdFlagsByType: Record<string, number>;
archivePercentage: number;
week: string;
date?: string;
};
export type RawWeekData = {
archivedFlags: number;
createdFlags: Record<string, number>;
week: string;
date: string;
};