Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/effector/packages/effector/index.d.ts>forward

Business logic with ease ☄️
Go to Latest
function forward
Deprecated
Deprecated

use sample({clock, target}) instead

import { forward } from "https://deno.land/x/effector@effector-react%4023.2.0/packages/effector/index.d.ts";

Method to create connection between units in a declarative way. Sends updates from one set of units to another

Type Parameters

From
T extends ForwardTarget

Parameters

opts: { from: Unit<From & { }>; to: CleanTarget<T, From>; }

Method to create connection between units in a declarative way. Sends updates from one set of units to another

Parameters

opts: { from: Unit<any>; to: ReadonlyArray<UnitTargetable<void>>; }

Method to create connection between units in a declarative way. Sends updates from one set of units to another

Parameters

opts: { from: ReadonlyArray<Unit<any>>; to: ReadonlyArray<UnitTargetable<void>>; }

Method to create connection between units in a declarative way. Sends updates from one set of units to another

Parameters

opts: { from: ReadonlyArray<Unit<any>>; to: UnitTargetable<void>; }

Method to create connection between units in a declarative way. Sends updates from one set of units to another

Type Parameters

To
From extends To

Parameters

opts: { from: ReadonlyArray<Unit<From>>; to: UnitTargetable<To> | ReadonlyArray<UnitTargetable<To>>; }

Method to create connection between units in a declarative way. Sends updates from one set of units to another

Parameters

opts: { from: Unit<any>; to: UnitTargetable<void>; }

Method to create connection between units in a declarative way. Sends updates from one set of units to another

Type Parameters

To
From extends To

Parameters

opts: { from: Unit<From>; to: UnitTargetable<To> | ReadonlyArray<UnitTargetable<To>>; }