(projectRoot: string)
| 62 | |
| 63 | /** Invalidate the cached graph for a project (e.g. after a big refactor). */ |
| 64 | export function invalidateSymbolGraph(projectRoot: string): void { |
| 65 | _cache.delete(projectRoot); |
| 66 | } |
| 67 | |
| 68 | export interface DependencyContext { |
| 69 | file: string; |