@hestjs/core
Version:
HestJS Core Framework - A TypeScript framework built on Hono with dependency injection and decorators
21 lines • 588 B
TypeScript
import { Hono } from "hono";
import { Container } from "../container/container";
import type { HestApplication } from "../interfaces/application";
/**
* HestJS 应用实例
*/
export declare class HestApplicationInstance implements HestApplication {
private readonly app;
private readonly container;
constructor(app: Hono, container: Container);
/**
* 获取 DI 容器
*/
getContainer(): Container;
/**
* 获取底层 Hono 实例 (内部使用)
* @internal
*/
getHonoInstance(): Hono;
}
//# sourceMappingURL=hest-application.d.ts.map