implement collections page

This commit is contained in:
2025-05-31 22:58:00 +01:00
parent 525d768235
commit 4bc5630922
21 changed files with 1244 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
import type { Bookmark } from "./bookmark.js"
interface Collection {
id: string
name: string
description: string
bookmarks: Bookmark[]
}
export type { Collection }

View File

@@ -1,3 +1,4 @@
export * from "./bookmark.ts"
export * from "./tag.ts"
export * from "./user.ts"
export * from "./collection.ts"