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