@punks/backend-entity-manager 0.0.396 → 0.0.397
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/dist/cjs/index.js +21 -30
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/extensions/tasks/module.d.ts +2 -2
- package/dist/esm/index.js +21 -30
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/extensions/tasks/module.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnModuleDestroy } from "@nestjs/common";
|
|
2
2
|
import { TaskScheduler } from "./providers/scheduler";
|
|
3
3
|
import { TasksModuleSettings } from "./settings";
|
|
4
4
|
export declare class TasksModule implements OnModuleDestroy {
|
|
5
5
|
private readonly scheduler;
|
|
6
6
|
constructor(scheduler: TaskScheduler);
|
|
7
|
-
static
|
|
7
|
+
static initialize(input: TasksModuleSettings): void;
|
|
8
8
|
onModuleDestroy(): void;
|
|
9
9
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2918,7 +2918,7 @@ type TasksModuleSettings = {
|
|
|
2918
2918
|
declare class TasksModule implements OnModuleDestroy {
|
|
2919
2919
|
private readonly scheduler;
|
|
2920
2920
|
constructor(scheduler: TaskScheduler);
|
|
2921
|
-
static
|
|
2921
|
+
static initialize(input: TasksModuleSettings): void;
|
|
2922
2922
|
onModuleDestroy(): void;
|
|
2923
2923
|
}
|
|
2924
2924
|
|