Type alias ActorMethodMappedWithHttpDetails<T>

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

Type Parameters

  • T