Group calendar cringe toggle

This commit is contained in:
Natsumi
2025-11-25 01:11:13 +11:00
parent 7b4ebc0ccd
commit 4cb2946ea9
6 changed files with 175 additions and 49 deletions

View File

@@ -7,9 +7,17 @@ export type GetGroup = (params: {
params: { groupId: string; includeRoles?: boolean };
}>;
export type GetCalendars = (date: string) => Promise<CalendarResponse>;
export type GetCalendars = (params: {
date: string;
}) => Promise<CalendarResponse>;
export type GetFollowingCalendars = (date: string) => Promise<CalendarResponse>;
export type GetFollowingCalendars = (params: {
date: string;
}) => Promise<CalendarResponse>;
export type GetFeaturedCalendars = (params: {
date: string;
}) => Promise<CalendarResponse>;
// API response types
interface GetGroupResponse {