(step: unknown)
| 57 | } |
| 58 | |
| 59 | function isStructuredBatchStepShape(step: unknown): step is Record<string, unknown> & BatchStep { |
| 60 | return isRecord(step) && 'input' in step && !('positionals' in step) && !('flags' in step); |
| 61 | } |
| 62 | |
| 63 | function readStructuredBatchStep( |
| 64 | step: Record<string, unknown> & BatchStep, |
no test coverage detected
searching dependent graphs…