UNPKG

@hlang-org/runtime

Version:

A FBP-Inspired language for universal applications.

12 lines (11 loc) 329 B
import { IPortDesc } from '../type'; import Graph from './graph'; import Node from '../node'; import Flow from '../base/flow'; export interface ISortedNodeMap { r: Node[]; w: Node[]; t: Node[]; } declare const run: (G: Graph<IPortDesc, Node>) => (sortedNodes: ISortedNodeMap, flow: Flow) => void; export default run;