| 10 | }; |
| 11 | |
| 12 | export interface ProgressOptions extends SpinnerOptions { |
| 13 | style?: 'light' | 'heavy' | 'block'; |
| 14 | max?: number; |
| 15 | size?: number; |
| 16 | } |
| 17 | |
| 18 | export interface ProgressResult extends SpinnerResult { |
| 19 | advance(step?: number, msg?: string): void; |
nothing calls this directly
no outgoing calls
no test coverage detected