Return value type for GraphNode functions. Nodes can return an update object, a Command, or a Promise of either.
GraphNodeReturnValue: Update | CommandInstance<
unknown,
Update,
Nodes
> | Promise<Update | CommandInstance<unknown, Update, Nodes>>