| 3 | import type { Project, SchemaInfo } from "../lib/types"; |
| 4 | |
| 5 | interface ProjectInfo { |
| 6 | project: Project; |
| 7 | schema: SchemaInfo | null; |
| 8 | } |
| 9 | |
| 10 | interface UseProjectsResult { |
| 11 | projects: ProjectInfo[]; |
nothing calls this directly
no outgoing calls
no test coverage detected