omarandstuff/desplega-api

View on GitHub
src/Step.types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface StepDefinition {
  title: string
  onFailure?: 'terminate' | 'continue'
  onSuccess?: 'terminate' | 'continue'
  maxRetries?: number
}