@blaxel/core 0.2.4-dev3 → 0.2.4-dev4
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/jobs/start.d.ts +1 -1
- package/dist/jobs/start.js +3 -3
- package/package.json +1 -1
package/dist/jobs/start.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const blStartJob: (func: (args: any) => Promise<void>) => void;
|
package/dist/jobs/start.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.blStartJob = void 0;
|
|
4
4
|
const env_js_1 = require("../common/env.js");
|
|
5
5
|
class BlJobWrapper {
|
|
6
6
|
async getArguments() {
|
|
@@ -52,8 +52,8 @@ class BlJobWrapper {
|
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
|
-
const
|
|
55
|
+
const blStartJob = (func) => {
|
|
56
56
|
const job = new BlJobWrapper();
|
|
57
57
|
job.start(func);
|
|
58
58
|
};
|
|
59
|
-
exports.
|
|
59
|
+
exports.blStartJob = blStartJob;
|