| 34 | } |
| 35 | |
| 36 | export interface Member { |
| 37 | collectionId?: number; |
| 38 | userId: number; |
| 39 | canCreate: boolean; |
| 40 | canUpdate: boolean; |
| 41 | canDelete: boolean; |
| 42 | user: OptionalExcluding<User, "username" | "name" | "id">; |
| 43 | } |
| 44 | |
| 45 | export interface CollectionIncludingMembersAndLinkCount |
| 46 | extends Omit<Collection, "id" | "createdAt" | "ownerId" | "updatedAt"> { |
nothing calls this directly
no outgoing calls
no test coverage detected