effex-monorepo
    Preparing search index...

    Type Alias ChildInputR<T>

    ChildInputR: T extends Effect.Effect<unknown, unknown, infer R>
        ? R
        : T extends ReadonlyArray<infer U> ? ChildInputR<U> : never

    Extract the union of R (requirements) types across every ChildInput in a variadic tuple, recursing into nested arrays. Scope and RendererContext from Element's type alias flow through naturally; they're satisfied by the ambient render layer.

    Type Parameters

    • T