Rename generic parameter to 'RequestType' in ServerReadableStream for consistency

This commit is contained in:
André Wachter 2018-01-10 10:30:51 +01:00
parent 3692053a4e
commit a0abff8b8e
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ declare module "grpc" {
* A stream that the server can read from. Used for calls that are streaming
* from the client side.
*/
export class ServerReadableStream<T> extends Readable {
export class ServerReadableStream<RequestType> extends Readable {
/**
* Indicates if the call has been cancelled
*/