docs: add some more jsdoc

This commit is contained in:
Andy Burke 2025-07-15 00:35:16 -07:00
parent 55a73c3d0a
commit 36bb9c6a87
3 changed files with 64 additions and 2 deletions

12
cli.ts
View file

@ -1,3 +1,15 @@
/**
* Command line interface for fsdb.
* @example
*
* ```
* > fsdb items create '{ "id": "able-fish-door-tall-wait-dark-dark-nose-tall-very", "value": "test" }'
* > fsdb items get able-fish-door-tall-wait-dark-dark-nose-tall-very
* ```
* @module
*/
import { parseArgs } from '@std/cli/parse-args';
import meta from './deno.json' with { type: 'json' };
import * as fsdb from './fsdb.ts';