From 0dca35a8b958f4a2f267994d5289f816eac33e69 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Mon, 8 Jun 2020 20:15:59 +0200 Subject: [PATCH] feat(client): export `ClientOptions` type --- 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 e8526817..9fc89f2e 100644 --- a/packages/grpc-js/src/index.ts +++ b/packages/grpc-js/src/index.ts @@ -31,6 +31,7 @@ import { ChannelCredentials } from './channel-credentials'; import { CallOptions, Client, + ClientOptions, CallInvocationTransformer, CallProperties, UnaryCallback, @@ -133,6 +134,7 @@ export { export { Client, + ClientOptions, loadPackageDefinition, makeClientConstructor, makeClientConstructor as makeGenericClientConstructor,