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