(filePath: string)
| 85 | * Check if a file path is within the memdir directory. |
| 86 | */ |
| 87 | export function isAutoMemFile(filePath: string): boolean { |
| 88 | if (isAutoMemoryEnabled()) { |
| 89 | return isAutoMemPath(filePath) |
| 90 | } |
| 91 | return false |
| 92 | } |
| 93 | |
| 94 | export type MemoryScope = 'personal' | 'team' |
| 95 |
no test coverage detected