IsDone returns true if all steps are complete.
()
| 119 | |
| 120 | // IsDone returns true if all steps are complete. |
| 121 | func (w *WorktreeSpinner) IsDone() bool { |
| 122 | return w.currentStep >= SpinnerStepDone |
| 123 | } |
| 124 | |
| 125 | // GetCurrentStep returns the current step. |
| 126 | func (w *WorktreeSpinner) GetCurrentStep() WorktreeSpinnerStep { |
no outgoing calls