* 警告消息
(message: string, options?: DisplayOptions)
| 79 | * 警告消息 |
| 80 | */ |
| 81 | public static warning(message: string, options?: DisplayOptions): void { |
| 82 | const text = `${UIStyles.icon.warning} ${UIStyles.status.warning(message)}`; |
| 83 | this.output(text, options); |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * 信息消息 |
no test coverage detected