Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grpc_or_grpcweb.dart: exporting shared types #486 #487

Merged
merged 5 commits into from
Jun 13, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions lib/grpc_or_grpcweb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@
// See the License for the specific language governing permissions and
// limitations under the License.

export 'src/auth/auth.dart'
mraleph marked this conversation as resolved.
Show resolved Hide resolved
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;

import 'src/client/grpc_or_grpcweb_channel_grpc.dart'
if (dart.library.html) 'src/client/grpc_or_grpcweb_channel_web.dart';
import 'src/client/http2_channel.dart';
Expand Down