feat: list blocked users

This commit is contained in:
Zamitto
2024-08-14 19:45:48 -03:00
parent 7e6b9ca825
commit fbe3c1973a
7 changed files with 119 additions and 3 deletions

View File

@@ -17,6 +17,7 @@ import type {
FriendRequest,
FriendRequestAction,
UserFriends,
UserBlocks,
} from "@types";
import type { DiskSpace } from "check-disk-space";
@@ -135,6 +136,7 @@ declare global {
take: number,
skip: number
) => Promise<UserFriends>;
getUserBlocks: (take: number, skip: number) => Promise<UserBlocks>;
/* Profile */
getMe: () => Promise<UserProfile | null>;