ic-reactor
    Preparing search index...

    Type Alias ActorMethodMappedWithHttpDetails<T>

    ActorMethodMappedWithHttpDetails: {
        [K in keyof T]: T[K] extends utils.agent.FunctionWithArgsAndReturn<
            infer Args,
            infer Ret,
        >
            ? utils.agent.ActorMethodWithHttpDetails<Args, Ret>
            : never
    }

    Type Parameters

    • T