feat(client): export ServiceClientConstructor,ProtobufTypeDefinition type

This commit is contained in:
howyi 2021-10-24 21:14:16 +09:00
parent 4a5c1da93b
commit 25e21d1fba
1 changed files with 7 additions and 1 deletions

View File

@ -42,7 +42,9 @@ import {
loadPackageDefinition,
makeClientConstructor,
MethodDefinition,
ProtobufTypeDefinition,
Serialize,
ServiceClientConstructor,
ServiceDefinition,
} from './make-client';
import { Metadata, MetadataValue } from './metadata';
@ -245,7 +247,11 @@ export {
InterceptorConfigurationError,
} from './client-interceptors';
export { GrpcObject } from './make-client';
export {
GrpcObject,
ServiceClientConstructor,
ProtobufTypeDefinition
} from './make-client';
export { ChannelOptions } from './channel-options';