UNPKG

@cto.af/ca

Version:

Testing-only Certificate Authority (CA) for your local development environment ONLY. This is in no way suitable for production of any kind.

9 lines (8 loc) 235 B
/** * Get a date N days in the future. * * @param days How many days from now? * @param [now=new Date()] Starting when? (default: now). * @returns New date. */ export declare function daysFromNow(days: number, now?: Date): Date;