MCPcopy Create free account
hub / github.com/echoVic/blade-code / section

Method section

src/ui/components/Display.ts:113–120  ·  view source on GitHub ↗

* 节标题

(title: string, content?: string, options?: DisplayOptions)

Source from the content-addressed store, hash-verified

111 * 节标题
112 */
113 public static section(title: string, content?: string, options?: DisplayOptions): void {
114 const text = UIStyles.component.section(title);
115 this.output(text, options);
116
117 if (content) {
118 this.output(content, { ...options, indent: 2 });
119 }
120 }
121
122 /**
123 * 键值对显示

Callers 7

index.tsFile · 0.80
mcpCommandFunction · 0.80
toolsCommandFunction · 0.80
displayToolsTableFunction · 0.80
displayToolInfoFunction · 0.80
displayToolResultFunction · 0.80
panelMethod · 0.80

Calls 1

outputMethod · 0.95

Tested by

no test coverage detected