From bf98da0e8d1fecefcbd33eb44d70165e0efa2bcb Mon Sep 17 00:00:00 2001 From: Matthew Douglass <5410142+mdouglass@users.noreply.github.com> Date: Thu, 23 Apr 2020 12:00:36 -0700 Subject: [PATCH] Export sendUnaryData as part of the public API #1389 --- packages/grpc-js/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/grpc-js/src/index.ts b/packages/grpc-js/src/index.ts index e7961cda..f525ee2b 100644 --- a/packages/grpc-js/src/index.ts +++ b/packages/grpc-js/src/index.ts @@ -57,6 +57,7 @@ import { handleBidiStreamingCall, handleServerStreamingCall, handleUnaryCall, + sendUnaryData, ServerUnaryCall, ServerReadableStream, ServerWritableStream, @@ -228,6 +229,7 @@ export const waitForClientReady = ( /* Interfaces */ export { + sendUnaryData, ChannelCredentials, CallCredentials, Deadline,