mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 22:03:50 +02:00
fix: dialog types error
This commit is contained in:
11
src/types/api/favorite.d.ts
vendored
11
src/types/api/favorite.d.ts
vendored
@@ -18,9 +18,16 @@ export type GetFavoriteAvatars = (params: {
|
||||
export type GetFavoriteWorlds = (params: {
|
||||
n: number;
|
||||
offset: number;
|
||||
userId?: string;
|
||||
tag?: string;
|
||||
}) => Promise<{
|
||||
json: GetFavoriteWorldsResponseList;
|
||||
params: { n: number; offset: number };
|
||||
params: {
|
||||
n: number;
|
||||
offset: number;
|
||||
userId?: string;
|
||||
tag?: string;
|
||||
};
|
||||
}>;
|
||||
|
||||
export type AddFavorite = (params: {
|
||||
@@ -75,4 +82,4 @@ interface AddFavoriteResponse {
|
||||
id: string;
|
||||
type: 'world' | 'friend' | 'avatar';
|
||||
tags: string[];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user