import { launch, type Unit, type Node } from "effector";

Methods

launch({ target, params })

Low level method for running computation in units (events, effects or stores). Mostly used by library developers for fine-grained control of computations.

Formulae

launch({
  target,
  params,
  defer?: boolean,
  page?: any,
  scope?: Scope,
  meta?: Record<string, any>,
}): void

Arguments

TBD

Returns

void

launch(unit, params)

Formulae

launch(unit: Unit | Node, params: T): void

Returns

void

Contributors