@nu-art/ts-common 0.202.44 → 0.202.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/module-manager.d.ts +1 -1
- package/package.json +1 -1
package/core/module-manager.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Logger } from './logger/Logger';
|
|
|
6
6
|
export declare function moduleResolver(): Module<any, any>[];
|
|
7
7
|
export declare class ModuleManager extends Logger {
|
|
8
8
|
protected config: any;
|
|
9
|
-
|
|
9
|
+
readonly modules: Module<any, any>[];
|
|
10
10
|
static instance: ModuleManager;
|
|
11
11
|
protected constructor();
|
|
12
12
|
private static resetForTests;
|