Restate Typescript SDK
    Preparing search index...

    Type Alias GenSendClient<H>

    GenSendClient: {
        readonly [K in keyof H]: H[K] extends HandlerDescriptor<
            infer I,
            infer O,
        >
            ? [I] extends [void]
                ? (opts?: SendOpts<I>) => Future<InvocationReference<O>>
                : (input: I, opts?: SendOpts<I>) => Future<InvocationReference<O>>
            : never
    }

    Client type returned by sendClient() — each method returns Future<InvocationReference>

    Type Parameters