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