( record: Record<string, unknown>, stepNumber: number, )
| 154 | } |
| 155 | |
| 156 | function readBatchStepRuntimeProperty( |
| 157 | record: Record<string, unknown>, |
| 158 | stepNumber: number, |
| 159 | ): Pick<BatchCommandStep, 'runtime'> { |
| 160 | const runtime = parseBatchStepRuntime(record.runtime, stepNumber, batchPlainError); |
| 161 | return runtime === undefined ? {} : { runtime }; |
| 162 | } |
no test coverage detected
searching dependent graphs…