(id: string, data: CollectionUpdate)
| 17 | } |
| 18 | |
| 19 | export const updateCollection = async (id: string, data: CollectionUpdate): Promise<Collection> => { |
| 20 | return repo().update(id, data) |
| 21 | } |
| 22 | |
| 23 | export const deleteCollection = async (id: string): Promise<void> => { |
| 24 | return repo().delete(id) |
no test coverage detected