Internals
Actor Runtime
The actor runtime requires that user scripts contain a default export with an async function called start
:
index.js
This can also be a class with a static method:
index.js
The runtime provides a single argument with type ActorContext
:
TypeScript