| 148 | } |
| 149 | |
| 150 | interface FoundSpecResult { |
| 151 | type: `Found`; |
| 152 | target: string; |
| 153 | getSpec: (options?: {enforceExactVersion?: boolean}) => Descriptor; |
| 154 | range?: Descriptor & {onFail?: DevEngineDependency[`onFail`]}; |
| 155 | envFilePath?: string; |
| 156 | } |
| 157 | export type LoadSpecResult = |
| 158 | | {type: `NoProject`, target: string} |
| 159 | | {type: `NoSpec`, target: string} |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…