UNPKG
@hlang-org/runtime
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A FBP-Inspired language for universal applications.
github.com/hlang-org/hlang
@hlang-org/runtime
/
lib
/
core
/
build.d.ts
6 lines
(5 loc)
•
194 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
IPortDesc
}
from
'../type'
;
import
Node
from
'../node'
;
import
Graph
from
'./graph'
;
declare
const
build
:
(
G
:
Graph
<
IPortDesc
,
Node
>
) =>
(
_rootNode
:
any
) =>
void
;
export
default
build;