ic-reactor
    Preparing search index...

    Type Alias ActorMethodMappedExtended<T>

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

    Type Parameters

    • T