@athenna/core
Version:
One foundation for multiple applications.
22 lines (21 loc) • 697 B
TypeScript
/**
* @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 { ArtisanImpl } from '@athenna/artisan';
import type { ConsoleOptions } from '#src/types/ConsoleOptions';
export declare class Console {
/**
* Boot the Artisan application and execute the commands of argv.
*/
static boot(argv: string[], options?: ConsoleOptions): Promise<ArtisanImpl>;
/**
* Resolve the kernel by importing it and calling the methods to register
* commands, routes and console exception handler.
*/
private static resolveKernel;
}