implement collections page
This commit is contained in:
10
packages/core/src/collection.ts
Normal file
10
packages/core/src/collection.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import type { Bookmark } from "./bookmark.js"
|
||||
|
||||
interface Collection {
|
||||
id: string
|
||||
name: string
|
||||
description: string
|
||||
bookmarks: Bookmark[]
|
||||
}
|
||||
|
||||
export type { Collection }
|
@@ -1,3 +1,4 @@
|
||||
export * from "./bookmark.ts"
|
||||
export * from "./tag.ts"
|
||||
export * from "./user.ts"
|
||||
export * from "./collection.ts"
|
||||
|
Reference in New Issue
Block a user