UNPKG

claude-flow

Version:

Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)

15 lines (11 loc) 229 B
interface Node { next: Node | null; } interface Constructor<T> { constructor(): T; } declare function reusify<T extends Node>(constructor: Constructor<T>): { constructor(): T; constructor(node: T): void; }; export = reusify;