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

x/effector/src/forest/plan/index.h.ts>OpGroup

Business logic with ease ☄️
Latest
type alias OpGroup
import { type OpGroup } from "https://deno.land/x/effector@effector%4023.2.2/src/forest/plan/index.h.ts";
definition: { ops: Op[]; queue: OpPriorityQueue; activeChilds: { props: { first: Op | null; last: Op | null; }; tree: { first: Op | null; last: Op | null; }; data: { first: Op | null; last: Op | null; }; }; cursor: { props: { prev: OpGroup | null; next: OpGroup | null; }; tree: { prev: OpGroup | null; next: OpGroup | null; }; data: { prev: OpGroup | null; next: OpGroup | null; }; }; }