UNPKG

@athenna/core

Version:

One foundation for multiple applications.

22 lines (21 loc) 611 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 { WorkerImpl } from '@athenna/queue'; import type { CronOptions } from '#src/types/CronOptions'; export declare class Worker { /** * Boot the Worker application. */ static boot(options?: CronOptions): Promise<WorkerImpl>; /** * Resolve the kernel by importing it and calling the methods to register * worker tasks and plugins. */ private static resolveKernel; }