// @generated by protoc-gen-es v1.10.0 // @generated from file component/testecho/v1/testecho.proto (package viam.component.testecho.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** * @generated from message viam.component.testecho.v1.EchoRequest */ export declare class EchoRequest extends Message { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: string message = 2; */ message: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.EchoRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): EchoRequest; static fromJson(jsonValue: JsonValue, options?: Partial): EchoRequest; static fromJsonString(jsonString: string, options?: Partial): EchoRequest; static equals(a: EchoRequest | PlainMessage | undefined, b: EchoRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.testecho.v1.EchoResponse */ export declare class EchoResponse extends Message { /** * @generated from field: string message = 1; */ message: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.EchoResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): EchoResponse; static fromJson(jsonValue: JsonValue, options?: Partial): EchoResponse; static fromJsonString(jsonString: string, options?: Partial): EchoResponse; static equals(a: EchoResponse | PlainMessage | undefined, b: EchoResponse | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.testecho.v1.EchoMultipleRequest */ export declare class EchoMultipleRequest extends Message { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: string message = 2; */ message: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.EchoMultipleRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): EchoMultipleRequest; static fromJson(jsonValue: JsonValue, options?: Partial): EchoMultipleRequest; static fromJsonString(jsonString: string, options?: Partial): EchoMultipleRequest; static equals(a: EchoMultipleRequest | PlainMessage | undefined, b: EchoMultipleRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.testecho.v1.EchoMultipleResponse */ export declare class EchoMultipleResponse extends Message { /** * @generated from field: string message = 1; */ message: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.EchoMultipleResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): EchoMultipleResponse; static fromJson(jsonValue: JsonValue, options?: Partial): EchoMultipleResponse; static fromJsonString(jsonString: string, options?: Partial): EchoMultipleResponse; static equals(a: EchoMultipleResponse | PlainMessage | undefined, b: EchoMultipleResponse | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.testecho.v1.EchoBiDiRequest */ export declare class EchoBiDiRequest extends Message { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: string message = 2; */ message: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.EchoBiDiRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): EchoBiDiRequest; static fromJson(jsonValue: JsonValue, options?: Partial): EchoBiDiRequest; static fromJsonString(jsonString: string, options?: Partial): EchoBiDiRequest; static equals(a: EchoBiDiRequest | PlainMessage | undefined, b: EchoBiDiRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.testecho.v1.EchoBiDiResponse */ export declare class EchoBiDiResponse extends Message { /** * @generated from field: string message = 1; */ message: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.EchoBiDiResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): EchoBiDiResponse; static fromJson(jsonValue: JsonValue, options?: Partial): EchoBiDiResponse; static fromJsonString(jsonString: string, options?: Partial): EchoBiDiResponse; static equals(a: EchoBiDiResponse | PlainMessage | undefined, b: EchoBiDiResponse | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.testecho.v1.StopRequest */ export declare class StopRequest extends Message { /** * @generated from field: string name = 1; */ name: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.StopRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StopRequest; static fromJson(jsonValue: JsonValue, options?: Partial): StopRequest; static fromJsonString(jsonString: string, options?: Partial): StopRequest; static equals(a: StopRequest | PlainMessage | undefined, b: StopRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.testecho.v1.StopResponse */ export declare class StopResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.testecho.v1.StopResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StopResponse; static fromJson(jsonValue: JsonValue, options?: Partial): StopResponse; static fromJsonString(jsonString: string, options?: Partial): StopResponse; static equals(a: StopResponse | PlainMessage | undefined, b: StopResponse | PlainMessage | undefined): boolean; }