Data interface for the type of an actor run result.

interface IActorMergeBindingsContextOutput {
    mergeHandlers: Record<string, IBindingsContextMergeHandler<any>>;
}

Hierarchy (View Summary)

Properties

Properties

mergeHandlers: Record<string, IBindingsContextMergeHandler<any>>

Merge handler function created by the actor. Here the record key is the context key the merge handler works on, and the value contains the constructed merge handler function interface