From 6e3ab74e640f35bc11f0cbe5301a5a4cc7409fa8 Mon Sep 17 00:00:00 2001 From: Michael Lumish Date: Mon, 20 Apr 2020 10:32:19 -0700 Subject: [PATCH] grpc-js: Make request callback type match the other library --- 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 661e0efd..9c3a566e 100644 --- a/packages/grpc-js/src/index.ts +++ b/packages/grpc-js/src/index.ts @@ -33,6 +33,7 @@ import { Client, CallInvocationTransformer, CallProperties, + UnaryCallback } from './client'; import { LogVerbosity, Status } from './constants'; import * as logging from './logging'; @@ -209,6 +210,7 @@ export { CallInvocationTransformer, ChannelImplementation as Channel, Channel as ChannelInterface, + UnaryCallback as requestCallback }; /**