/** * @athenna/core * * (c) João Lenon * * 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; /** * Resolve the kernel by importing it and calling the methods to register * worker tasks and plugins. */ private static resolveKernel; }