import type { Bookmark } from "./bookmark.js" interface Collection { id: string name: string description: string bookmarks: Bookmark[] } export type { Collection }