-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.ts
More file actions
35 lines (34 loc) · 832 Bytes
/
index.ts
File metadata and controls
35 lines (34 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { Value } from './src/client-actor/value'
import { Noop } from './src/protos/eigr/functions/protocol/actors/protocol'
import { ActorContext, Broadcast, Effect, Pipe, Forward } from './src/client-actor/workflows'
import { ActorOpts, IActorOpts } from './src/client-actor/definitions'
import { PayloadRef } from './src/integration/parsers'
import { Kind } from './src/protos/eigr/functions/protocol/actors/actor'
import spawn, {
ActorActionCallback,
InvokeOpts,
ActorCallbackConnector,
payloadFor,
ActorActionOpts,
SpawnSystem
} from './src/spawn'
export {
payloadFor,
ActorContext,
PayloadRef,
ActorActionCallback,
InvokeOpts,
ActorCallbackConnector,
ActorActionOpts,
Noop,
Kind,
Value,
Broadcast,
Effect,
Pipe,
Forward,
ActorOpts,
IActorOpts,
SpawnSystem
}
export default spawn