Skip to content

Commit

Permalink
Export shared types between grpc and grpc-web
Browse files Browse the repository at this point in the history
  • Loading branch information
gawmanarnar committed Jun 10, 2021
1 parent d4504da commit eb05a1a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/grpc_or_grpcweb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,14 @@ class GrpcOrGrpcWebClientChannel extends GrpcOrGrpcWebClientChannelInternal {
ChannelOptions options = const ChannelOptions(),
}) : super.grpc(host, port: port, options: options);
}

export 'src/auth/auth.dart'
show HttpBasedAuthenticator, JwtServiceAccountAuthenticator;

export 'src/client/call.dart' show MetadataProvider, CallOptions;

export 'src/client/common.dart' show Response, ResponseStream, ResponseFuture;

export 'src/shared/profiler.dart' show isTimelineLoggingEnabled;

export 'src/shared/status.dart' show StatusCode, GrpcError;

0 comments on commit eb05a1a

Please sign in to comment.