mirror of https://github.com/grpc/grpc-node.git
Merge pull request #1587 from badsyntax/export-client-streaming-type
grpc-js: Export handleClientStreamingCall type
This commit is contained in:
commit
21adc97c4a
|
@ -57,6 +57,7 @@ import { StatusBuilder } from './status-builder';
|
|||
import {
|
||||
handleBidiStreamingCall,
|
||||
handleServerStreamingCall,
|
||||
handleClientStreamingCall,
|
||||
handleUnaryCall,
|
||||
sendUnaryData,
|
||||
ServerUnaryCall,
|
||||
|
@ -186,7 +187,7 @@ export {
|
|||
|
||||
/**** Server ****/
|
||||
|
||||
export { handleBidiStreamingCall, handleServerStreamingCall, handleUnaryCall };
|
||||
export { handleBidiStreamingCall, handleServerStreamingCall, handleUnaryCall, handleClientStreamingCall };
|
||||
|
||||
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||
export type Call =
|
||||
|
|
Loading…
Reference in New Issue