Skip to content

Commit fe82be7

Browse files
authored
Merge pull request #853 from alexander-fenster/patch-1
grpc-js: add ServiceError
2 parents 6b044a2 + 293ea93 commit fe82be7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/grpc-js/src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import * as semver from 'semver';
1919

20-
import {ClientDuplexStream, ClientReadableStream, ClientUnaryCall, ClientWritableStream} from './call';
20+
import {ClientDuplexStream, ClientReadableStream, ClientUnaryCall, ClientWritableStream, ServiceError} from './call';
2121
import {CallCredentials} from './call-credentials';
2222
import {Deadline, StatusObject} from './call-stream';
2323
import {Channel, ConnectivityState, Http2Channel} from './channel';
@@ -180,7 +180,8 @@ export {
180180
ClientWritableStream,
181181
ClientDuplexStream,
182182
CallOptions,
183-
StatusObject
183+
StatusObject,
184+
ServiceError
184185
};
185186

186187
/* tslint:disable:no-any */

0 commit comments

Comments
 (0)