We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb8b6e3 commit 5668cdfCopy full SHA for 5668cdf
src/index.ts
@@ -7,6 +7,8 @@ import AbstractMicroservice from '@services/abstract-microservice';
7
import Gateway from '@services/gateway';
8
import Microservice from '@services/microservice';
9
10
+export * from './interfaces';
11
+
12
export {
13
EXCEPTION_CODE,
14
BaseException,
src/interfaces/index.ts
@@ -0,0 +1,15 @@
1
+import IBaseException from './core/i-base-exception';
2
3
+export * from './drivers/log-driver';
4
5
+export * from './core/i-microservice-response';
6
+export * from './core/i-microservice-request';
+export * from './services/i-abstract-microservice';
+export * from './services/i-gateway';
+export * from './services/i-microservice';
15
+export { IBaseException };
0 commit comments