Libraries
    Preparing search index...

    Type Alias ActionContext<E>

    ActionContext: E extends EndpointBuilder<
        infer TParams,
        infer TBody,
        infer TQuery,
        infer THeaders,
        any,
        infer TPrincipal,
        any,
        any,
        any,
        infer TUpload,
    >
        ? Simplify<
            ActionContextParts<
                TParams,
                TBody,
                TQuery,
                THeaders,
                TPrincipal,
                TUpload,
            >,
        >
        : never

    The fully-typed argument object passed to endpoint handlers.

    The shape is inferred from the EndpointBuilder chain — only the keys actually configured (body, query, headers, params, principal) are present.

    Type Parameters

    • E