MCPcopy
hub / github.com/codeaashu/claude-code / getOptionsForSetting

Function getOptionsForSetting

src/tools/ConfigTool/supportedSettings.ts:200–206  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

198}
199
200export function getOptionsForSetting(key: string): string[] | undefined {
201 const config = SUPPORTED_SETTINGS[key]
202 if (!config) return undefined
203 if (config.options) return [...config.options]
204 if (config.getOptions) return config.getOptions()
205 return undefined
206}
207
208export function getPath(key: string): string[] {
209 const config = SUPPORTED_SETTINGS[key]

Callers 2

generatePromptFunction · 0.85
callFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected