MCPcopy
hub / github.com/makeplane/plane / ProgressConfig

Interface ProgressConfig

apps/space/lib/b-progress/AppProgressBar.tsx:15–32  ·  view source on GitHub ↗

* Progress bar configuration options

Source from the content-addressed store, hash-verified

13 * Progress bar configuration options
14 */
15interface 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected