// @generated by protoc-gen-es v1.10.0 // @generated from file component/gripper/v1/gripper.proto (package viam.component.gripper.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Struct } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** * @generated from message viam.component.gripper.v1.OpenRequest */ export declare class OpenRequest extends Message { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: google.protobuf.Struct extra = 99; */ extra?: Struct; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.OpenRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OpenRequest; static fromJson(jsonValue: JsonValue, options?: Partial): OpenRequest; static fromJsonString(jsonString: string, options?: Partial): OpenRequest; static equals(a: OpenRequest | PlainMessage | undefined, b: OpenRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.gripper.v1.OpenResponse */ export declare class OpenResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.OpenResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OpenResponse; static fromJson(jsonValue: JsonValue, options?: Partial): OpenResponse; static fromJsonString(jsonString: string, options?: Partial): OpenResponse; static equals(a: OpenResponse | PlainMessage | undefined, b: OpenResponse | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.gripper.v1.GrabRequest */ export declare class GrabRequest extends Message { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: google.protobuf.Struct extra = 99; */ extra?: Struct; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.GrabRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GrabRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GrabRequest; static fromJsonString(jsonString: string, options?: Partial): GrabRequest; static equals(a: GrabRequest | PlainMessage | undefined, b: GrabRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.gripper.v1.GrabResponse */ export declare class GrabResponse extends Message { /** * @generated from field: bool success = 1; */ success: boolean; /** * @generated from field: google.protobuf.Struct extra = 99; */ extra?: Struct; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.GrabResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GrabResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GrabResponse; static fromJsonString(jsonString: string, options?: Partial): GrabResponse; static equals(a: GrabResponse | PlainMessage | undefined, b: GrabResponse | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.gripper.v1.StopRequest */ export declare class StopRequest extends Message { /** * Name of a gripper * * @generated from field: string name = 1; */ name: string; /** * @generated from field: google.protobuf.Struct extra = 99; */ extra?: Struct; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.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.gripper.v1.StopResponse */ export declare class StopResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.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; } /** * @generated from message viam.component.gripper.v1.IsMovingRequest */ export declare class IsMovingRequest extends Message { /** * @generated from field: string name = 1; */ name: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.IsMovingRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): IsMovingRequest; static fromJson(jsonValue: JsonValue, options?: Partial): IsMovingRequest; static fromJsonString(jsonString: string, options?: Partial): IsMovingRequest; static equals(a: IsMovingRequest | PlainMessage | undefined, b: IsMovingRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.gripper.v1.IsMovingResponse */ export declare class IsMovingResponse extends Message { /** * @generated from field: bool is_moving = 1; */ isMoving: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.IsMovingResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): IsMovingResponse; static fromJson(jsonValue: JsonValue, options?: Partial): IsMovingResponse; static fromJsonString(jsonString: string, options?: Partial): IsMovingResponse; static equals(a: IsMovingResponse | PlainMessage | undefined, b: IsMovingResponse | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.gripper.v1.IsHoldingSomethingRequest */ export declare class IsHoldingSomethingRequest extends Message { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: google.protobuf.Struct extra = 99; */ extra?: Struct; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.IsHoldingSomethingRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): IsHoldingSomethingRequest; static fromJson(jsonValue: JsonValue, options?: Partial): IsHoldingSomethingRequest; static fromJsonString(jsonString: string, options?: Partial): IsHoldingSomethingRequest; static equals(a: IsHoldingSomethingRequest | PlainMessage | undefined, b: IsHoldingSomethingRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.component.gripper.v1.IsHoldingSomethingResponse */ export declare class IsHoldingSomethingResponse extends Message { /** * @generated from field: bool is_holding_something = 1; */ isHoldingSomething: boolean; /** * @generated from field: google.protobuf.Struct meta = 99; */ meta?: Struct; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.component.gripper.v1.IsHoldingSomethingResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): IsHoldingSomethingResponse; static fromJson(jsonValue: JsonValue, options?: Partial): IsHoldingSomethingResponse; static fromJsonString(jsonString: string, options?: Partial): IsHoldingSomethingResponse; static equals(a: IsHoldingSomethingResponse | PlainMessage | undefined, b: IsHoldingSomethingResponse | PlainMessage | undefined): boolean; }