MCPcopy Index your code
hub / github.com/codeaashu/claude-code / getSpinnerVerbs

Function getSpinnerVerbs

src/constants/spinnerVerbs.ts:3–13  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import { getInitialSettings } from '../utils/settings/settings.js'
2
3export function getSpinnerVerbs(): string[] {
4 const settings = getInitialSettings()
5 const config = settings.spinnerVerbs
6 if (!config) {
7 return SPINNER_VERBS
8 }
9 if (config.mode === 'replace') {
10 return config.verbs.length > 0 ? config.verbs : SPINNER_VERBS
11 }
12 return [...SPINNER_VERBS, ...config.verbs]
13}
14
15// Spinner verbs for loading messages
16export const SPINNER_VERBS = [

Callers 4

SpinnerWithVerbInnerFunction · 0.85
_temp4Function · 0.85
TeammateSpinnerLineFunction · 0.85
spawnInProcessTeammateFunction · 0.85

Calls 1

getInitialSettingsFunction · 0.85

Tested by

no test coverage detected