(ws: WorkspaceMetadata)
| 3 | import { PlatformPaths } from "@/common/utils/paths"; |
| 4 | |
| 5 | export function isMultiProject(ws: WorkspaceMetadata): boolean { |
| 6 | return (ws.projects?.length ?? 0) > 1; |
| 7 | } |
| 8 | |
| 9 | export function getProjects(ws: WorkspaceMetadata): ProjectRef[] { |
| 10 | if (ws.projects && ws.projects.length > 0) return ws.projects; |
no outgoing calls
no test coverage detected