From 3cdaebdd0c6347c55cf8a57235c3eec7ef067f00 Mon Sep 17 00:00:00 2001 From: "Chakhsu.Lau" Date: Thu, 4 Jan 2024 21:19:02 +0800 Subject: [PATCH] fix: export type VerifyOptions --- packages/grpc-js/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/grpc-js/src/index.ts b/packages/grpc-js/src/index.ts index d44a2dc6e..6733246ba 100644 --- a/packages/grpc-js/src/index.ts +++ b/packages/grpc-js/src/index.ts @@ -27,7 +27,7 @@ import { StatusObject } from './call-interface'; import { Channel, ChannelImplementation } from './channel'; import { CompressionAlgorithms } from './compression-algorithms'; import { ConnectivityState } from './connectivity-state'; -import { ChannelCredentials } from './channel-credentials'; +import { ChannelCredentials, VerifyOptions } from './channel-credentials'; import { CallOptions, Client, @@ -182,6 +182,7 @@ export { ServiceDefinition, UntypedHandleCall, UntypedServiceImplementation, + VerifyOptions }; /**** Server ****/