rangoo94/bestest

View on GitHub
packages/execution/lib/interfaces/AsynchronousFunctionExecutionOptionsInterface.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ScheduleTaskType } from '@bestest/task-schedulement/lib/interfaces/ScheduleTaskType'
import { AbstractFunctionExecutionOptionsInterface } from './AbstractFunctionExecutionOptionsInterface'

interface AsynchronousFunctionExecutionOptionsInterface extends AbstractFunctionExecutionOptionsInterface {
  maxConcurrentExecutions: number
  scheduleTask: ScheduleTaskType
}

export {
  AsynchronousFunctionExecutionOptionsInterface
}