* 节标题
(title: string, content?: string, options?: DisplayOptions)
| 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 | * 键值对显示 |
no test coverage detected