| 13 | } from './common.js'; |
| 14 | |
| 15 | export interface SpinnerOptions extends CommonOptions { |
| 16 | indicator?: 'dots' | 'timer'; |
| 17 | onCancel?: () => void; |
| 18 | cancelMessage?: string; |
| 19 | errorMessage?: string; |
| 20 | frames?: string[]; |
| 21 | delay?: number; |
| 22 | styleFrame?: (frame: string) => string; |
| 23 | } |
| 24 | |
| 25 | export interface SpinnerResult { |
| 26 | start(msg?: string): void; |
nothing calls this directly
no outgoing calls
no test coverage detected