( entry: DependencyGroupEntry )
| 19 | import { pythonVersionString } from './version'; |
| 20 | |
| 21 | function isDependencyGroupInclude( |
| 22 | entry: DependencyGroupEntry |
| 23 | ): entry is { 'include-group': string } { |
| 24 | return typeof entry === 'object' && 'include-group' in entry; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Resolve a dependency group, recursively following `{include-group: "..."}` references. |
no outgoing calls
no test coverage detected