| 43 | import { Plus, Upload, Loader2, Trash2 } from "lucide-react"; |
| 44 | |
| 45 | interface Category { |
| 46 | id: string; |
| 47 | name: string; |
| 48 | slug: string; |
| 49 | description: string | null; |
| 50 | color: string | null; |
| 51 | icon: string | null; |
| 52 | createdAt: Date; |
| 53 | updatedAt: Date | null; |
| 54 | } |
| 55 | |
| 56 | interface Bookmark { |
| 57 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected