fix(core): update

This commit is contained in:
Philipp Kunz 2022-11-21 11:31:29 +01:00
parent 264c08d848
commit 010c9e7bed
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smarttime',
version: '3.0.47',
version: '3.0.48',
description: 'handle time in smart ways'
}

View File

@ -8,7 +8,7 @@ export type TJobFunction =
| ((triggerTimeArg?: number) => Promise<any>);
export class CronJob {
public cronParser: typeof plugins.croner;
public cronParser: plugins.croner;
public status: 'started' | 'stopped' | 'initial' = 'initial';
public cronExpression: string;
public jobFunction: TJobFunction;