(rootAbs: string)
| 1851 | } |
| 1852 | |
| 1853 | function clearScheduledPersistNoteMetaCache(rootAbs: string): void { |
| 1854 | const existing = noteMetaCachePersistTimers.get(rootAbs) |
| 1855 | if (existing) clearTimeout(existing) |
| 1856 | noteMetaCachePersistTimers.delete(rootAbs) |
| 1857 | } |
| 1858 | |
| 1859 | export function invalidateNoteMetaCache(root: string, rel?: string): void { |
| 1860 | const rootAbs = path.resolve(root) |
no test coverage detected