nxtcron - v1.0.1
    Preparing search index...

    Variable nextConst

    next: (expr: CronInput, options?: RunOptions) => Date[] = ...

    Calculate the next scheduled execution time(s).

    Type Declaration

      • (expr: CronInput, options?: RunOptions): Date[]
      • Compute next N execution times.

        Parameters

        • expr: CronInput

          Cron string or pre-parsed expression

        • options: RunOptions = {}

          Run options (timezone, before, after, count)

        Returns Date[]

        calc.next( '0 9 * * MON', { count: 3, timezone: 'UTC' } );