File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,11 @@ export * from "./RoleChecker";
88
88
export * from "./Action" ;
89
89
export * from "./InterceptorInterface" ;
90
90
91
+ export * from "./driver/Driver" ;
92
+ export * from "./driver/BaseDriver" ;
93
+ export * from "./driver/express/ExpressDriver" ;
94
+ export * from "./driver/koa/KoaDriver" ;
95
+
91
96
// -------------------------------------------------------------------------
92
97
// Main Functions
93
98
// -------------------------------------------------------------------------
@@ -140,7 +145,7 @@ export function createKoaServer(options?: RoutingControllersOptions): any {
140
145
/**
141
146
* Registers all loaded actions in your express application.
142
147
*/
143
- function createExecutor ( driver : Driver , options : RoutingControllersOptions ) : void {
148
+ export function createExecutor ( driver : Driver , options : RoutingControllersOptions ) : void {
144
149
145
150
// import all controllers and middlewares and error handlers (new way)
146
151
let controllerClasses : Function [ ] ;
You can’t perform that action at this time.
0 commit comments