Skip to content

Commit

Permalink
Merge pull request grpc#2071 from kskalski/master
Browse files Browse the repository at this point in the history
Expose MetadataOptions interface in grpc-js.
  • Loading branch information
murgatroid99 committed Mar 25, 2022
2 parents 86aa9b5 + 8d7d3f3 commit a6f3df7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grpc-js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import {
ServiceClientConstructor,
ServiceDefinition,
} from './make-client';
import { Metadata, MetadataValue } from './metadata';
import { Metadata, MetadataOptions, MetadataValue } from './metadata';
import {
Server,
UntypedHandleCall,
Expand Down Expand Up @@ -119,7 +119,7 @@ export const credentials = {

/**** Metadata ****/

export { Metadata, MetadataValue };
export { Metadata, MetadataOptions, MetadataValue };

/**** Constants ****/

Expand Down

0 comments on commit a6f3df7

Please sign in to comment.