@certik/skynet 0.18.6 → 0.18.7
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/CHANGELOG.md +4 -0
- package/app.d.ts +4 -4
- package/package.json +1 -1
- package/selector.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/app.d.ts
CHANGED
|
@@ -69,15 +69,15 @@ export type Validate = {
|
|
|
69
69
|
mem: number;
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
type BuildWithRestart = Build & { restart
|
|
72
|
+
type BuildWithRestart = Build & { restart?: Restart };
|
|
73
73
|
|
|
74
|
-
type BuildWithConcurrency = Build & { concurrency
|
|
74
|
+
type BuildWithConcurrency = Build & { concurrency?: number };
|
|
75
75
|
|
|
76
|
-
type ValidateWithConcurrency = Validate & { concurrency
|
|
76
|
+
type ValidateWithConcurrency = Validate & { concurrency?: number };
|
|
77
77
|
|
|
78
78
|
export const SENSITIVE_VALUE: null;
|
|
79
79
|
|
|
80
|
-
export function every(n
|
|
80
|
+
export function every(n?: number): {
|
|
81
81
|
second: string;
|
|
82
82
|
seconds: string;
|
|
83
83
|
minute: string;
|
package/package.json
CHANGED