(key: string)
| 688 | export type GlobalConfigKey = (typeof GLOBAL_CONFIG_KEYS)[number] |
| 689 | |
| 690 | export function isGlobalConfigKey(key: string): key is GlobalConfigKey { |
| 691 | return GLOBAL_CONFIG_KEYS.includes(key as GlobalConfigKey) |
| 692 | } |
| 693 | |
| 694 | export const PROJECT_CONFIG_KEYS = [ |
| 695 | 'allowedTools', |
nothing calls this directly
no outgoing calls
no test coverage detected