Interface ActorMethodWithHttpDetails<Args, Ret>
Type Parameters
- Args extends unknown[] = unknown[]
- Ret = unknown
- ActorMethodWithHttpDetails(...args): Promise<{
httpDetails: utils.agent.HttpDetailsResponse;
result: Ret;
}> - ActorMethodWithHttpDetails(...args): Promise<unknown>
Returns Promise<unknown>
Methods
withOptions
- withOptions(options): ((...args) => Promise<unknown>)
Returns ((...args) => Promise<unknown>)
An actor method type, defined for each methods of the actor service.