Merge pull request #983 from esilkensen/grpc-native-core-typo

Fix typo in makeServerStreamRequest return type (grpc-native-core)
This commit is contained in:
Michael Lumish 2019-08-06 11:36:14 -07:00 committed by GitHub
commit d2d66064e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1131,7 +1131,7 @@ declare module "grpc" {
argument: RequestType,
metadata?: Metadata | null,
options?: CallOptions | null,
): ClientReadableStream<RequestType>;
): ClientReadableStream<ResponseType>;
/**
* Make a bidirectional stream request with this method on the given channel.