Example
GitHub
Preparing search index...
The search index is not available
ic-reactor
ic-reactor
react
utils
agent
ActorMethodWithHttpDetails
Interface ActorMethodWithHttpDetails<Args, Ret>
An actor method type, defined for each methods of the actor service.
interface
ActorMethodWithHttpDetails
<
Args
,
Ret
>
{
withOptions
(
options
)
:
(
(
...
args
)
=>
Promise
<
unknown
>
)
;
(
...
args
)
:
Promise
<
{
httpDetails
:
utils
.
agent
.
HttpDetailsResponse
;
result
:
Ret
;
}
>
;
(
...
args
)
:
Promise
<
unknown
>
;
}
Type Parameters
Args
extends
unknown
[]
=
unknown
[]
Ret
=
unknown
Hierarchy (
view full
)
types
.
ActorMethod
ActorMethodWithHttpDetails
Actor
Method
With
Http
Details
(
...
args
)
:
Promise
<
{
httpDetails
:
utils
.
agent
.
HttpDetailsResponse
;
result
:
Ret
;
}
>
Parameters
Rest
...
args
:
Args
Returns
Promise
<
{
httpDetails
:
utils
.
agent
.
HttpDetailsResponse
;
result
:
Ret
;
}
>
Actor
Method
With
Http
Details
(
...
args
)
:
Promise
<
unknown
>
Parameters
Rest
...
args
:
unknown
[]
Returns
Promise
<
unknown
>
Index
Methods
with
Options
Methods
with
Options
with
Options
(
options
)
:
(
(
...
args
)
=>
Promise
<
unknown
>
)
Parameters
options
:
utils
.
agent
.
CallConfig
Returns
(
(
...
args
)
=>
Promise
<
unknown
>
)
(
...
args
)
:
Promise
<
unknown
>
Parameters
Rest
...
args
:
unknown
[]
Returns
Promise
<
unknown
>
Settings
Member Visibility
Protected
Private
Inherited
External
Theme
OS
Light
Dark
On This Page
with
Options
ic-reactor
Loading...
An actor method type, defined for each methods of the actor service.