effect-rpc
    Preparing search index...

    Type Alias RequestImplementations<T, V, R>

    RequestImplementations: {
        readonly [P in keyof V]: (
            payload: Parameters<V[P]>[0],
        ) => Effect.Effect<
            ExtractSuccess<ReturnType<V[P]>>,
            ExtractError<ReturnType<V[P]>>,
            R,
        >
    }

    Maps each RPC request to its implementation. This type is used to ensure that all endpoints in the router are implemented.

    Type Parameters

    0.5.0