* Progress bar configuration options
| 13 | * Progress bar configuration options |
| 14 | */ |
| 15 | interface ProgressConfig { |
| 16 | /** Whether to show the loading spinner */ |
| 17 | showSpinner: boolean; |
| 18 | /** Minimum progress percentage (0-1) */ |
| 19 | minimum: number; |
| 20 | /** Animation speed in milliseconds */ |
| 21 | speed: number; |
| 22 | /** Auto-increment speed in milliseconds */ |
| 23 | trickleSpeed: number; |
| 24 | /** CSS easing function */ |
| 25 | easing: string; |
| 26 | /** Enable auto-increment */ |
| 27 | trickle: boolean; |
| 28 | /** Delay before showing progress bar in milliseconds */ |
| 29 | delay: number; |
| 30 | /** Whether to disable the progress bar */ |
| 31 | isDisabled?: boolean; |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Configuration for the progress bar |
nothing calls this directly
no outgoing calls
no test coverage detected