mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-22 00:03:51 +02:00
Group calendar cringe toggle
This commit is contained in:
12
src/types/api/group.d.ts
vendored
12
src/types/api/group.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user