UNPKG

@athenna/core

Version:

One foundation for multiple applications.

23 lines (22 loc) 669 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 { ServerImpl } from '@athenna/http'; import type { HttpOptions } from '#src/types/HttpOptions'; export declare class Http { /** * Boot the Http application. */ static boot(options?: HttpOptions): Promise<ServerImpl>; /** * Resolve the kernel by importing it and calling the methods to register * controllers, all kind of middlewares, plugins and exception handler for * requests. */ private static resolveKernel; }