mirror of https://github.com/grpc/grpc-node.git
27 lines
966 B
TypeScript
27 lines
966 B
TypeScript
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<Constructor extends new (...args: any) => any, Subtype> = {
|
|
new(...args: ConstructorParameters<Constructor>): 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<typeof grpc.Client, _grpc_health_v1_HealthClient> & { service: _grpc_health_v1_HealthDefinition }
|
|
HealthCheckRequest: MessageTypeDefinition
|
|
HealthCheckResponse: MessageTypeDefinition
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|