cleanup(tui): give xml-tool-output.ts a module header like its peers

Every other tui source file opens with a multi-line description ending
in @module; xml-tool-output.ts had only a one-line header. Align it.
This commit is contained in:
Turtle
2026-07-27 21:03:36 +08:00
parent 46bbbce109
commit 4efc90d798

View File

@@ -1,4 +1,8 @@
/** Conservative readable-tree rendering for model-facing text containing one XML document. */
/**
* Conservative readable-tree rendering for model-facing text containing one XML
* document, used by the transcript's tool and context cards.
* @module @deepseek-ai/dsh-tui/components/xml-tool-output
*/
import { SaxesParser } from 'saxes'