bug fixed

This commit is contained in:
daniel31x13
2023-10-28 01:42:31 -04:00
parent cdcfabec0b
commit 9486d699c9
9 changed files with 13 additions and 35 deletions
+2 -2
View File
@@ -18,11 +18,11 @@ export interface LinkIncludingShortenedCollectionAndTags
export interface Member {
collectionId?: number;
userId?: number;
userId: number;
canCreate: boolean;
canUpdate: boolean;
canDelete: boolean;
user: OptionalExcluding<User, "username" | "name">;
user: OptionalExcluding<User, "username" | "name" | "id">;
}
export interface CollectionIncludingMembersAndLinkCount