mirror of https://github.com/grpc/grpc-node.git
Merge pull request #1951 from howyi/master
feat(client): export `ServiceClientConstructor` type
This commit is contained in:
commit
5a49a93065
|
@ -42,7 +42,9 @@ import {
|
||||||
loadPackageDefinition,
|
loadPackageDefinition,
|
||||||
makeClientConstructor,
|
makeClientConstructor,
|
||||||
MethodDefinition,
|
MethodDefinition,
|
||||||
|
ProtobufTypeDefinition,
|
||||||
Serialize,
|
Serialize,
|
||||||
|
ServiceClientConstructor,
|
||||||
ServiceDefinition,
|
ServiceDefinition,
|
||||||
} from './make-client';
|
} from './make-client';
|
||||||
import { Metadata, MetadataValue } from './metadata';
|
import { Metadata, MetadataValue } from './metadata';
|
||||||
|
@ -245,7 +247,11 @@ export {
|
||||||
InterceptorConfigurationError,
|
InterceptorConfigurationError,
|
||||||
} from './client-interceptors';
|
} from './client-interceptors';
|
||||||
|
|
||||||
export { GrpcObject } from './make-client';
|
export {
|
||||||
|
GrpcObject,
|
||||||
|
ServiceClientConstructor,
|
||||||
|
ProtobufTypeDefinition
|
||||||
|
} from './make-client';
|
||||||
|
|
||||||
export { ChannelOptions } from './channel-options';
|
export { ChannelOptions } from './channel-options';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue