Skip to content

Commit 5668cdf

Browse files
fix: export interfaces
1 parent eb8b6e3 commit 5668cdf

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import AbstractMicroservice from '@services/abstract-microservice';
77
import Gateway from '@services/gateway';
88
import Microservice from '@services/microservice';
99

10+
export * from './interfaces';
11+
1012
export {
1113
EXCEPTION_CODE,
1214
BaseException,

src/interfaces/index.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
7+
export * from './core/i-microservice-request';
8+
9+
export * from './services/i-abstract-microservice';
10+
11+
export * from './services/i-gateway';
12+
13+
export * from './services/i-microservice';
14+
15+
export { IBaseException };

0 commit comments

Comments
 (0)