fix: dialog types error

This commit is contained in:
pa
2025-07-16 14:58:23 +09:00
committed by Natsumi
parent b23687430e
commit 6b84d7444b
17 changed files with 156 additions and 108 deletions

View File

@@ -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[];
}
}