@bluelibs/runner - v6.3.1
    Preparing search index...

    Type Alias TaskDependency<I, O>

    TaskDependency: I extends null
    | void
        ? (input?: I, options?: TaskCallOptions) => O
        : (input: I, options?: TaskCallOptions) => O

    Task dependencies transform into callable functions: call with the task input and you receive the task output. Call options are always passed as the second argument to avoid ambiguous object-input vs options inference.

    Type Parameters

    • I
    • O