ProgressDisplay handles the display string for a progress bar.
| 11 | // ProgressDisplay handles the display string for |
| 12 | // a progress bar. |
| 13 | type ProgressDisplay interface { |
| 14 | // Determinate returns the strings to display |
| 15 | // for percents 0 to 100. |
| 16 | Determinate() [101]string |
| 17 | // Indeterminate returns the strings to display |
| 18 | // at interval. |
| 19 | Indeterminate() []string |
| 20 | } |
| 21 | |
| 22 | // ProgressBar is an ishell progress bar. |
| 23 | type ProgressBar interface { |
no outgoing calls
no test coverage detected