Merge pull request #1587 from badsyntax/export-client-streaming-type

grpc-js: Export handleClientStreamingCall type
This commit is contained in:
Michael Lumish 2020-09-24 10:14:41 -07:00 committed by GitHub
commit 21adc97c4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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 =