Skip to main content
Module

x/linkding/mod.ts

Access your Linkding API with Deno.
Go to Latest
File
/** * Simple module for accessing your [Linkding](https://github.com/sissbruecker/linkding) instance. * * ## Example for getting all bookmarks * ```ts * import { listBookmarks } from 'https://deno.land/x/linkding/mod.ts'; * * const allBookmarks = listBookmarks({ all: true }); * // do what you need to do with the bookmarks. * ``` * * ## Example for single bookmark * ```ts * import { getBookmark } from 'https://deno.land/x/linkding/mod.ts'; * * const bookmark = getBookmark(10); * // do what you need to do with the bookmark. * ``` * * @module */
export * from './src/read.ts';export * from './src/util.ts';