ic-reactor
    Preparing search index...

    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)

    • Parameters

      Returns Promise<Ret>

    Index

    Methods

    Methods