UNPKG

noflo

Version:

Flow-Based Programming environment for JavaScript

16 lines (15 loc) 485 B
/** * @typedef NetworkProcess * @property {string} id * @property {string} [componentName] * @property {import("./Component").Component} [component] */ export class Network extends BaseNetwork { constructor(graph: import("fbp-graph/lib/Graph").Graph, options?: import("./BaseNetwork").NetworkOptions); } export type NetworkProcess = { id: string; componentName?: string; component?: import("./Component").Component; }; import { BaseNetwork } from "./BaseNetwork";