@cosyswork/macerven@0.2.71Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
latest
cosys-work/macervenThis package provides utilities for use with the MACER / MAVEN primitives in cosys.work ecosystem.
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




JSR Score
100%
Published
2 years ago (0.2.71)
import type { Node } from "./node.ts"; export type EffectFn = () => void | (() => void); export declare class Effect<T extends Object> { _fn?: EffectFn; _cleanup?: () => void; _sources?: Node<T>; _nextBatchedEffect?: Effect<T>; _flags: number; constructor(fn: EffectFn); _callback(): void; _start(): () => void; _notify(): void; _dispose(): void; }