♻️ refactor: auto format

This commit is contained in:
2026-06-30 21:47:49 +07:00
parent c93bfdccec
commit 2779b62f31
31 changed files with 484 additions and 351 deletions
+4 -1
View File
@@ -109,7 +109,10 @@ export interface IpcRequests {
"avatar:unfavoriteMany": (avatarIds: string[]) => IpcResult<void>;
"avatar:moveFavoriteMany": (p: { avatarIds: string[]; folder: string }) => IpcResult<MoveResult>;
"avatar:clearFavoriteFolder": (folder: string) => IpcResult<void>;
"avatar:updateFavoriteFolder": (p: { folder: string; edit: FavoriteGroupEdit }) => IpcResult<void>;
"avatar:updateFavoriteFolder": (p: {
folder: string;
edit: FavoriteGroupEdit;
}) => IpcResult<void>;
"group:byUser": (userId: string) => IpcResult<Group[]>;
"group:represented": (userId: string) => IpcResult<Group | null>;