Skip to content

Commit

Permalink
Add missing class exports
Browse files Browse the repository at this point in the history
  • Loading branch information
tinrab committed Nov 8, 2021
1 parent 5831a96 commit dcb0556
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/grpc-web/exports.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@
*/
goog.module('grpc.web.Exports');

const CallOptions = goog.require('grpc.web.CallOptions');
const MethodDescriptor = goog.require('grpc.web.MethodDescriptor');
const GrpcWebClientBase = goog.require('grpc.web.GrpcWebClientBase');
const RpcError = goog.require('grpc.web.RpcError');
const StatusCode = goog.require('grpc.web.StatusCode');
const MethodDescriptor = goog.require('grpc.web.MethodDescriptor');
const MethodType = goog.require('grpc.web.MethodType');

module['exports']['CallOptions'] = CallOptions;
module['exports']['MethodDescriptor'] = MethodDescriptor;
module['exports']['GrpcWebClientBase'] = GrpcWebClientBase;
module['exports']['RpcError'] = RpcError;
module['exports']['StatusCode'] = StatusCode;
module['exports']['MethodDescriptor'] = MethodDescriptor;
module['exports']['MethodType'] = MethodType;

0 comments on commit dcb0556

Please sign in to comment.