| 23 | } |
| 24 | |
| 25 | export interface SpinnerResult { |
| 26 | start(msg?: string): void; |
| 27 | stop(msg?: string): void; |
| 28 | cancel(msg?: string): void; |
| 29 | error(msg?: string): void; |
| 30 | message(msg?: string): void; |
| 31 | clear(): void; |
| 32 | readonly isCancelled: boolean; |
| 33 | } |
| 34 | |
| 35 | const defaultStyleFn: SpinnerOptions['styleFrame'] = (frame) => styleText('magenta', frame); |
| 36 |
no outgoing calls
no test coverage detected