@kl-c/matrixos 0.3.47 → 0.3.49

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.
@@ -17,3 +17,8 @@ export interface CronRemoveOptions {
17
17
  export declare function cronAdd(options: CronAddOptions): number;
18
18
  export declare function cronList(options?: CronListOptions): number;
19
19
  export declare function cronRemove(options: CronRemoveOptions): number;
20
+ export interface CronStartOptions {
21
+ daemon?: boolean;
22
+ }
23
+ export declare function cronStart(options?: CronStartOptions): number;
24
+ export declare function cronStop(): number;