UNPKG

@athenna/core

Version:

One foundation for multiple applications.

22 lines (21 loc) 619 B
/** * @athenna/core * * (c) João Lenon <lenon@athenna.io> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import type { CronImpl } from '@athenna/cron'; import type { CronOptions } from '#src/types/CronOptions'; export declare class Cron { /** * Boot the Cron application. */ static boot(options?: CronOptions): Promise<CronImpl>; /** * Resolve the kernel by importing it and calling the methods to register * schedulers, plugins and exception handler. */ private static resolveKernel; }