* Adds a warning issue * @param message warning issue message. Errors will be converted to string via toString() * @param properties optional properties to add to the annotation.
(message, properties = {})
| 333 | * @param properties optional properties to add to the annotation. |
| 334 | */ |
| 335 | function warning(message, properties = {}) { |
| 336 | command_1.issueCommand('warning', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message); |
| 337 | } |
| 338 | exports.warning = warning; |
| 339 | /** |
| 340 | * Adds a notice issue |
nothing calls this directly
no test coverage detected
searching dependent graphs…