// @generated by protoc-gen-connect-es v1.5.0 // @generated from file proto/rpc/examples/echo/v1/echo.proto (package proto.rpc.examples.echo.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import { EchoBiDiRequest, EchoBiDiResponse, EchoMultipleRequest, EchoMultipleResponse, EchoRequest, EchoResponse } from "./echo_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; /** * @generated from service proto.rpc.examples.echo.v1.EchoService */ export declare const EchoService: { readonly typeName: "proto.rpc.examples.echo.v1.EchoService", readonly methods: { /** * @generated from rpc proto.rpc.examples.echo.v1.EchoService.Echo */ readonly echo: { readonly name: "Echo", readonly I: typeof EchoRequest, readonly O: typeof EchoResponse, readonly kind: MethodKind.Unary, }, /** * @generated from rpc proto.rpc.examples.echo.v1.EchoService.EchoMultiple */ readonly echoMultiple: { readonly name: "EchoMultiple", readonly I: typeof EchoMultipleRequest, readonly O: typeof EchoMultipleResponse, readonly kind: MethodKind.ServerStreaming, }, /** * @generated from rpc proto.rpc.examples.echo.v1.EchoService.EchoBiDi */ readonly echoBiDi: { readonly name: "EchoBiDi", readonly I: typeof EchoBiDiRequest, readonly O: typeof EchoBiDiResponse, readonly kind: MethodKind.BiDiStreaming, }, } };