Merge pull request #2071 from kskalski/master

Expose MetadataOptions interface in grpc-js.
This commit is contained in:
Michael Lumish 2022-03-25 12:53:49 -07:00 committed by GitHub
commit a6f3df70ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ import {
ServiceClientConstructor, ServiceClientConstructor,
ServiceDefinition, ServiceDefinition,
} from './make-client'; } from './make-client';
import { Metadata, MetadataValue } from './metadata'; import { Metadata, MetadataOptions, MetadataValue } from './metadata';
import { import {
Server, Server,
UntypedHandleCall, UntypedHandleCall,
@ -119,7 +119,7 @@ export const credentials = {
/**** Metadata ****/ /**** Metadata ****/
export { Metadata, MetadataValue }; export { Metadata, MetadataOptions, MetadataValue };
/**** Constants ****/ /**** Constants ****/