feat: remove nullables

This commit is contained in:
Zamitto
2024-07-17 19:03:32 -03:00
parent 8c67dda84e
commit 929be48495
6 changed files with 13 additions and 13 deletions

View File

@@ -134,7 +134,7 @@ declare global {
displayName: string,
newProfileImagePath: string | null
) => Promise<UserProfile>;
getFriendRequests: () => Promise<FriendRequest[] | null>;
getFriendRequests: () => Promise<FriendRequest[]>;
updateFriendRequest: (
userId: string,
action: FriendRequestAction