Skip to main content

pipe

Import

You can import the entire package and access the function:


_10
import * as sdk from "@onflow/sdk"
_10
_10
sdk.pipe(args)

Or import directly the specific function:


_10
import { pipe } from "@onflow/sdk"
_10
_10
pipe(args)

Parameters

args (optional)

  • Type: [(false | InteractionBuilderFn)[]] | [MaybePromise<Interaction>, (false | InteractionBuilderFn)[]]

Returns

InteractionBuilderFn | Promise<Interaction>


Rate this page