Options
All
  • Public
  • Public/Protected
  • All
Menu

composable-flows

Index

Type aliases

AnyFunction

AnyFunction: (...params: any[]) => any

Type declaration

    • (...params: any[]): any
    • Parameters

      • Rest ...params: any[]

      Returns any

CallbackAllFail

CallbackAllFail: (errors: Error[]) => void

Type declaration

    • (errors: Error[]): void
    • Parameters

      • errors: Error[]

      Returns void

CallbackAllOk

CallbackAllOk: (resultValues: any[]) => void

Type declaration

    • (resultValues: any[]): void
    • Parameters

      • resultValues: any[]

        List of results of stages that run with success.

      Returns void

CallbackAnyFail

CallbackAnyFail: (errors: Error[]) => void

Type declaration

    • (errors: Error[]): void
    • Parameters

      • errors: Error[]

      Returns void

CallbackAnyOk

CallbackAnyOk: (resultValues: any[]) => void

Type declaration

    • (resultValues: any[]): void
    • Parameters

      • resultValues: any[]

        List of results of stages that run with success.

      Returns void

CallbackFail

CallbackFail: (value: Error | any) => void

Type declaration

    • (value: Error | any): void
    • Parameters

      • value: Error | any

        The error of a stage. Contains an undefined if a stage is not found.

      Returns void

CallbackOk

CallbackOk: (value: Error | any) => void

Type declaration

    • (value: Error | any): void
    • Parameters

      • value: Error | any

        The result of a stage. Contains an undefined if a stage is not found.

      Returns void

Stage

Stage<I>: StageFunction<I> | StageContainer<I>

Type parameters

  • I

StageFunction

StageFunction<I>: AnyFunction | TypedFunction<I>

Type parameters

  • I

TypedFunction

TypedFunction<I>: (param?: I) => any

Type parameters

  • I

Type declaration

    • (param?: I): any
    • Parameters

      • Optional param: I

      Returns any

Generated using TypeDoc