nxtcron - v1.0.1
    Preparing search index...

    Interface RunOptions

    Options for next/previous run calculations.

    interface RunOptions {
        after?: Date;
        before?: Date;
        count?: number;
        timezone?: string;
    }
    Index

    Properties

    after?: Date

    Reference date after which to find the next run. Defaults to now.

    before?: Date

    Reference date before which to find the previous run. Defaults to now.

    count?: number

    Number of runs to return. Defaults to 1.

    timezone?: string

    IANA timezone string (e.g. 'America/New_York'). Defaults to UTC.