fix(core): update

This commit is contained in:
2020-07-11 21:41:33 +00:00
parent 7a231b7686
commit 885b2432a8
9 changed files with 8686 additions and 636 deletions

View File

@@ -4,7 +4,7 @@ import { CronManager } from './smarttime.classes.cronmanager';
export type TJobFunction = (() => void) | (() => Promise<any>);
export class CronJob {
public croner;
public croner;
public status: 'started' | 'stopped' | 'initial' = 'initial';
public cronExpression: string;
public jobFunction: TJobFunction;