Interface TaskProvider

A TaskProvider can be used to define the set of tasks that should be provided to the system. i.e. that are available for the user to run.

interface TaskProvider {
    provideTasks(): Promise<TaskConfiguration[]>;
}

Methods

Methods