Restate Typescript SDK
    Preparing search index...

    Ingress client bundle bound to a specific scope, returned by scope. Mirrors the in-handler scope(...) surface: same client/sendClient overloads, but every call/send routes within the bound scope.

    interface ScopedGenIngress {
        client<H extends Record<string, HandlerDescriptor>>(
            def: Descriptor<string, H, "service">,
        ): IngressHandlerClient<H>;
        client<H extends Record<string, HandlerDescriptor>>(
            def: Descriptor<string, H, "object" | "workflow">,
            key: string,
        ): IngressHandlerClient<H>;
        sendClient<H extends Record<string, HandlerDescriptor>>(
            def: Descriptor<string, H, "service">,
        ): IngressSendHandlerClient<H>;
        sendClient<H extends Record<string, HandlerDescriptor>>(
            def: Descriptor<string, H, "object" | "workflow">,
            key: string,
        ): IngressSendHandlerClient<H>;
    }
    Index

    Methods