| 71 | export type DeepSearchScope = "description" | "content" | "both"; |
| 72 | |
| 73 | export interface ChopsSettings { |
| 74 | tools: Record<string, { enabled: boolean; customPaths: string[] }>; |
| 75 | watchEnabled: boolean; |
| 76 | watchDebounceMs: number; |
| 77 | deepSearchDefault: boolean; |
| 78 | deepSearchScope: DeepSearchScope; |
| 79 | favorites: string[]; |
| 80 | collections: Record<string, string[]>; |
| 81 | customScanPaths: string[]; |
| 82 | namingMode: NamingMode; |
| 83 | projectScanEnabled: boolean; |
| 84 | projectsHomeDir: string; |
| 85 | packageRunner: "auto" | "npx" | "bunx"; |
| 86 | } |
| 87 | |
| 88 | // Conversation Explorer types |
| 89 | export interface ConversationMessage { |
nothing calls this directly
no outgoing calls
no test coverage detected