Interface Task

A Task represents a container which can be [run] dynamically whenever (and as many times as) needed.

interface Task {
    run(options?): Promise<void>;
}

Methods

Methods

  • Run the task, passing in additional task run options.

    Parameters

    Returns Promise<void>

Generated using TypeDoc