Example
GitHub
Preparing search index...
The search index is not available
ic-reactor
ic-reactor
react
types
ActorMethod
Interface ActorMethod<Args, Ret>
An actor method type, defined for each methods of the actor service.
interface
ActorMethod
<
Args
,
Ret
>
{
withOptions
(
options
)
:
(
(
...
args
)
=>
Promise
<
Ret
>
)
;
(
...
args
)
:
Promise
<
Ret
>
;
}
Type Parameters
Args
extends
unknown
[]
=
unknown
[]
Ret
=
unknown
Hierarchy (
view full
)
ActorMethod
utils
.
agent
.
ActorMethodWithHttpDetails
utils
.
agent
.
ActorMethodExtended
Actor
Method
(
...
args
)
:
Promise
<
Ret
>
Parameters
Rest
...
args
:
Args
Returns
Promise
<
Ret
>
Index
Methods
with
Options
Methods
with
Options
with
Options
(
options
)
:
(
(
...
args
)
=>
Promise
<
Ret
>
)
Parameters
options
:
utils
.
agent
.
CallConfig
Returns
(
(
...
args
)
=>
Promise
<
Ret
>
)
(
...
args
)
:
Promise
<
Ret
>
Parameters
Rest
...
args
:
Args
Returns
Promise
<
Ret
>
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.