From 5e18c0b64102d1b740af64befc2f268f024bf8c9 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Thu, 30 Jul 2015 13:19:16 -0700 Subject: [PATCH] timezone -> timeZone for 'cron'. --- cron/cron.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cron/cron.d.ts b/cron/cron.d.ts index c956a26fb..f91fedec8 100644 --- a/cron/cron.d.ts +++ b/cron/cron.d.ts @@ -6,9 +6,9 @@ declare module "cron" { interface CronJobStatic { - new(cronTime: string|Date, onTick: () => void, onComplete?: () => void, start?: boolean, timezone?: string, context?: any): CronJob; + new(cronTime: string|Date, onTick: () => void, onComplete?: () => void, start?: boolean, timeZone?: string, context?: any): CronJob; new(options: { - cronTime: string|Date; onTick: () => void; onComplete?: () => void; start?: boolean; timezone?: string; context?: any + cronTime: string|Date; onTick: () => void; onComplete?: () => void; start?: boolean; timeZone?: string; context?: any }): CronJob; } interface CronJob {