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>createNode

Business logic with ease ☄️
Latest
function createNode
import { createNode } from "https://deno.land/x/effector@effector%4023.2.2/packages/effector/index.d.ts";

Method to create a new graph node. Low level tool, usually absent in common applications

Parameters

optional
opts: { node?: Array<
| Cmd
| false
| void
| null
>; parent?: Array<Unit<any> | Node>; child?: Array<Unit<any> | Node>; scope?: { [field: string]: any; }; meta?: { [field: string]: any; }; family?: { type?: "regular" | "crosslink" | "domain"; owners?: Unit<any> | Node | Array<Unit<any> | Node>; links?: Unit<any> | Node | Array<Unit<any> | Node>; }; regional?: boolean; }