pipe
Import
You can import the entire package and access the function:
_10import * as sdk from "@onflow/sdk"_10_10sdk.pipe(args)
Or import directly the specific function:
_10import { pipe } from "@onflow/sdk"_10_10pipe(args)
Parameters
args
(optional)
- Type:
[(false | InteractionBuilderFn)[]] | [MaybePromise<Interaction>, (false | InteractionBuilderFn)[]]
Returns
InteractionBuilderFn | Promise<Interaction>