// @generated by protoc-gen-connect-es v1.6.1 // @generated from file service/video/v1/video.proto (package viam.service.video.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import { GetVideoRequest, GetVideoResponse } from "./video_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; import { DoCommandRequest, DoCommandResponse, GetStatusRequest, GetStatusResponse } from "../../../common/v1/common_pb.js"; /** * VideoService services video streaming and retrieval * * @generated from service viam.service.video.v1.VideoService */ export declare const VideoService: { readonly typeName: "viam.service.video.v1.VideoService", readonly methods: { /** * GetVideo retrieves a video for a given time range * * @generated from rpc viam.service.video.v1.VideoService.GetVideo */ readonly getVideo: { readonly name: "GetVideo", readonly I: typeof GetVideoRequest, readonly O: typeof GetVideoResponse, readonly kind: MethodKind.ServerStreaming, }, /** * DoCommand sends/receives arbitrary commands * * @generated from rpc viam.service.video.v1.VideoService.DoCommand */ readonly doCommand: { readonly name: "DoCommand", readonly I: typeof DoCommandRequest, readonly O: typeof DoCommandResponse, readonly kind: MethodKind.Unary, }, /** * GetStatus returns the status of the resource * * @generated from rpc viam.service.video.v1.VideoService.GetStatus */ readonly getStatus: { readonly name: "GetStatus", readonly I: typeof GetStatusRequest, readonly O: typeof GetStatusResponse, readonly kind: MethodKind.Unary, }, } };