fix: export type VerifyOptions

This commit is contained in:
Chakhsu.Lau 2024-01-04 21:19:02 +08:00
parent c5d35fe22d
commit 3cdaebdd0c
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import { StatusObject } from './call-interface';
import { Channel, ChannelImplementation } from './channel'; import { Channel, ChannelImplementation } from './channel';
import { CompressionAlgorithms } from './compression-algorithms'; import { CompressionAlgorithms } from './compression-algorithms';
import { ConnectivityState } from './connectivity-state'; import { ConnectivityState } from './connectivity-state';
import { ChannelCredentials } from './channel-credentials'; import { ChannelCredentials, VerifyOptions } from './channel-credentials';
import { import {
CallOptions, CallOptions,
Client, Client,
@ -182,6 +182,7 @@ export {
ServiceDefinition, ServiceDefinition,
UntypedHandleCall, UntypedHandleCall,
UntypedServiceImplementation, UntypedServiceImplementation,
VerifyOptions
}; };
/**** Server ****/ /**** Server ****/