(message: string)
| 5 | const prefix = ""; |
| 6 | |
| 7 | function _sendErrorMessage(message: string) { |
| 8 | ElMessage({message: prefix + message, type: 'error'}); |
| 9 | } |
| 10 | |
| 11 | function _sendSuccessMessage(message: string) { |
| 12 | ElMessage({message: prefix + message, type: 'success'}); |
nothing calls this directly
no outgoing calls
no test coverage detected