UNPKG

@hemia/workflow-engine

Version:

Motor de flujos de trabajo flexible y extensible desarrollado por Hemia Technologies.

9 lines (8 loc) 287 B
import { WorkflowNode } from "@hemia/workflow-core"; export declare class NodeRegistry { private nodes; register(type: string, node: WorkflowNode): void; get(type: string): WorkflowNode | undefined; registerMany(nodes: WorkflowNode[]): void; listTypes(): string[]; }