ic-reactor
    Preparing search index...

    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)

    Index

    Methods

    Methods