(message string, ttyCheck func() bool)
| 164 | } |
| 165 | |
| 166 | func formatSuccessMessageWithTTY(message string, ttyCheck func() bool) string { |
| 167 | return applyStyleWithTTY(styles.Success, "✓ ", ttyCheck) + message |
| 168 | } |
| 169 | |
| 170 | // FormatInfoMessage formats an informational message |
| 171 | func FormatInfoMessage(message string) string { |