import type * as grpc from '@grpc/grpc-js'; import type { MessageTypeDefinition } from '@grpc/proto-loader'; import type { HealthClient as _grpc_health_v1_HealthClient, HealthDefinition as _grpc_health_v1_HealthDefinition } from './grpc/health/v1/Health'; type SubtypeConstructor any, Subtype> = { new(...args: ConstructorParameters): Subtype; }; export interface ProtoGrpcType { grpc: { health: { v1: { /** * Health is gRPC's mechanism for checking whether a server is able to handle * RPCs. Its semantics are documented in * https://github.com/grpc/grpc/blob/master/doc/health-checking.md. */ Health: SubtypeConstructor & { service: _grpc_health_v1_HealthDefinition } HealthCheckRequest: MessageTypeDefinition HealthCheckResponse: MessageTypeDefinition } } } }