MCPcopy Index your code
hub / github.com/MrLesk/Backlog.md / LoadingScreenConfig

Interface LoadingScreenConfig

src/ui/loading.ts:23–38  ·  view source on GitHub ↗

* Configuration options for creating loading screens. * @internal

Source from the content-addressed store, hash-verified

21 * @internal
22 */
23interface LoadingScreenConfig {
24 /** Title for the loading screen window */
25 title?: string;
26 /** Initial message to display */
27 message: string;
28 /** Width of the loading box (default: "50%") */
29 width?: string | number;
30 /** Height of the loading box in rows (default: 7) */
31 height?: number;
32 /** Whether to show a spinner animation (default: true) */
33 showSpinner?: boolean;
34 /** Position of the spinner within the screen (default: "center") */
35 spinnerPosition?: "center" | "bottom";
36 /** Whether the loading box should be scrollable (default: false) */
37 allowScrolling?: boolean;
38}
39
40/**
41 * Creates the basic loading screen components shared by both loading functions.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected