document360-writer 0.5.62 → 0.5.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +92 -91
- package/dist/commands/structure.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ReplContext } from '../repl.js';
|
|
2
|
+
import type { SlashCommandResult } from './index.js';
|
|
3
|
+
/** The ordered category → article tree as display lines (categories flush-left, articles indented).
|
|
4
|
+
Empty when there's no config/map. Shared by the classic command + the TUI case. */
|
|
5
|
+
export declare function structureLines(cwd: string, profileName?: string): string[];
|
|
6
|
+
export declare function structureCommand(_args: string[], ctx: ReplContext): Promise<SlashCommandResult>;
|
package/package.json
CHANGED