mirror of https://github.com/grpc/grpc-node.git
Merge pull request #2071 from kskalski/master
Expose MetadataOptions interface in grpc-js.
This commit is contained in:
commit
a6f3df70ae
|
@ -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 ****/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue