(key: string)
| 668 | export type GlobalConfigKey = (typeof GLOBAL_CONFIG_KEYS)[number] |
| 669 | |
| 670 | export function isGlobalConfigKey(key: string): key is GlobalConfigKey { |
| 671 | return GLOBAL_CONFIG_KEYS.includes(key as GlobalConfigKey) |
| 672 | } |
| 673 | |
| 674 | export const PROJECT_CONFIG_KEYS = [ |
| 675 | 'allowedTools', |
nothing calls this directly
no outgoing calls
no test coverage detected