// package: skywalking.v3 // file: logging/Logging.proto /* tslint:disable */ /* eslint-disable */ import * as grpc from "@grpc/grpc-js"; import * as logging_Logging_pb from "../logging/Logging_pb"; import * as common_Common_pb from "../common/Common_pb"; interface ILogReportServiceService extends grpc.ServiceDefinition { collect: ILogReportServiceService_Icollect; } interface ILogReportServiceService_Icollect extends grpc.MethodDefinition { path: "/skywalking.v3.LogReportService/collect"; requestStream: true; responseStream: false; requestSerialize: grpc.serialize; requestDeserialize: grpc.deserialize; responseSerialize: grpc.serialize; responseDeserialize: grpc.deserialize; } export const LogReportServiceService: ILogReportServiceService; export interface ILogReportServiceServer extends grpc.UntypedServiceImplementation { collect: grpc.handleClientStreamingCall; } export interface ILogReportServiceClient { collect(callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; collect(metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; collect(options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; collect(metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; } export class LogReportServiceClient extends grpc.Client implements ILogReportServiceClient { constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial); public collect(callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; public collect(metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; public collect(options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; public collect(metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; }