Merge pull request #1951 from howyi/master

feat(client): export `ServiceClientConstructor` type
This commit is contained in:
Michael Lumish 2021-10-26 12:56:41 -07:00 committed by GitHub
commit 5a49a93065
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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';