grpc-js: Make request callback type match the other library

This commit is contained in:
Michael Lumish 2020-04-20 10:32:19 -07:00
parent 03fdeedc78
commit 6e3ab74e64
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@ import {
Client, Client,
CallInvocationTransformer, CallInvocationTransformer,
CallProperties, CallProperties,
UnaryCallback
} from './client'; } from './client';
import { LogVerbosity, Status } from './constants'; import { LogVerbosity, Status } from './constants';
import * as logging from './logging'; import * as logging from './logging';
@ -209,6 +210,7 @@ export {
CallInvocationTransformer, CallInvocationTransformer,
ChannelImplementation as Channel, ChannelImplementation as Channel,
Channel as ChannelInterface, Channel as ChannelInterface,
UnaryCallback as requestCallback
}; };
/** /**