Skip to content

Commit

Permalink
move errors to top
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePresman committed Dec 18, 2023
1 parent 8d26fe9 commit ee5136d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion js/src/grpc-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import { context as contextAPI, trace as traceAPI } from "@opentelemetry/api";
import { GrpcTransport } from "@protobuf-ts/grpc-transport";
import { RpcError, type ClientStreamingCall, type RpcOptions } from "@protobuf-ts/runtime-rpc";
import { TextDecoder, TextEncoder } from "util";
import { ProjectAlreadyExistsError } from "./errors";
import { trace, tracer } from "./internal/telemetry";
import type { CloneToProjectResponse, GetUnaryResponse, Objekt, Project, UpdateRequest, UpdateResponse } from "./pb/fs_pb";
import { FsClient } from "./pb/fs_pb.client";
import { ProjectAlreadyExistsError } from "./utils/errors";
export type { Objekt, Project };

/**
Expand Down
2 changes: 1 addition & 1 deletion js/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "./binary-client";
export * from "./errors";
export * from "./grpc-client";
export * from "./utils/errors";

0 comments on commit ee5136d

Please sign in to comment.