MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / loadingTipKind

Function loadingTipKind

apps/kimi-code/src/tui/kimi-tui.ts:180–184  ·  view source on GitHub ↗
(mode: EffectiveActivityPaneMode)

Source from the content-addressed store, hash-verified

178type LoadingTipKind = 'moon' | 'composing';
179
180function loadingTipKind(mode: EffectiveActivityPaneMode): LoadingTipKind | undefined {
181 if (mode === 'waiting' || mode === 'tool') return 'moon';
182 if (mode === 'composing') return 'composing';
183 return undefined;
184}
185
186function sameStringArrays(a: readonly string[], b: readonly string[]): boolean {
187 return a.length === b.length && a.every((value, index) => value === b[index]);

Callers 1

updateActivityPaneMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected