Interface GroupTaskBaseConfig<Result, Binding>

Represents the base configuration for a group of tasks

interface GroupTaskBaseConfig<Result = any, Binding = any> {
    options: WellIdentifiedTaskOptions<any>;
    tasks: SingleTaskBaseConfig<Result, Binding>[];
}

Type Parameters

  • Result = any
  • Binding = any

Properties

Properties

Group of tasks options

Tasks