(step: NextStep, runtime: RuntimeKind)
| 3 | import { formatNextStep } from './next-step-formatting.ts'; |
| 4 | |
| 5 | export function renderNextStep(step: NextStep, runtime: RuntimeKind): string { |
| 6 | return formatNextStep(step, { runtime }); |
| 7 | } |
| 8 | |
| 9 | export function renderNextStepsSection(steps: NextStep[], runtime: RuntimeKind): string { |
| 10 | if (steps.length === 0) { |
no test coverage detected