(rootPath: string)
| 85 | } |
| 86 | |
| 87 | export function getProject(rootPath: string): ProjectState | undefined { |
| 88 | return projects.get(normalizeRootKey(rootPath)); |
| 89 | } |
| 90 | |
| 91 | export function getAllProjects(): ProjectState[] { |
| 92 | return Array.from(projects.values()); |
no test coverage detected