fix(Cron Parser): handle aws, next executions and TZ

Handle AWS Cron syntax and distinguishe from standard syntax (fix #855)
Add show crontab next 5 execution times (taken from #1283)
Add Timezone handling: fix #261
This commit is contained in:
sharevb 2024-05-01 14:22:46 +02:00 committed by ShareVB
parent cb5b462e11
commit 48b4904cf1
9 changed files with 339 additions and 18 deletions

View file

@ -0,0 +1,3 @@
declare module "get-timezone-offset" {
export default function(timeZoneName: string, date: Date);
}