UNPKG
transgate
Version:
latest (0.6.3)
0.6.3
0.6.2
0.5.0
0.4.1
0.3.3
0.2.0
0.1.0
Agent-based task flow framework
github.com/tilfin/transgate
tilfin/transgate
transgate
/
dist
/
lib
/
gate
/
type.d.ts
9 lines
(8 loc)
•
202 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
GateItem
{ }
export
interface
OutGate
<T
extends
GateItem
> {
send
(
item
: T |
null
):
Promise
<
void
>; }
export
interface
InGate
<T
extends
GateItem
> {
receive
():
Promise
<T |
null
>; }