(matches?: UIMatch[])
| 5 | export type ProjectJobEnvironment = MatchedProject["environments"][number]; |
| 6 | |
| 7 | export function useEnvironments(matches?: UIMatch[]) { |
| 8 | const project = useOptionalProject(matches); |
| 9 | if (!project) return; |
| 10 | |
| 11 | return project.environments; |
| 12 | } |
no test coverage detected
searching dependent graphs…