/** * @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 { ServerImpl } from '@athenna/http'; import type { HttpOptions } from '#src/types/HttpOptions'; import type { AWSLambdaHandler } from '#src/types/AWSLambdaHandler'; export declare class Http { /** * Only initialize the server without booting it. */ static init(options?: HttpOptions): Promise; static boot(options: HttpOptions & { isAWSLambda: true; }): Promise; static boot(options?: HttpOptions): Promise; /** * 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; /** * Resolve the AWS Lambda proxy. */ private static resolveAWSLambdaProxy; }