@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
9 lines (8 loc) • 408 B
text/typescript
import { LucidHonoGeneric } from "../../types/hono.mjs";
import { LucidMiddlewareHandler } from "./types.mjs";
import { MiddlewareHandler } from "hono";
//#region src/libs/http/create-middleware.d.ts
declare const createMiddleware: (handler: LucidMiddlewareHandler) => MiddlewareHandler<LucidHonoGeneric>;
//#endregion
export { createMiddleware as default };
//# sourceMappingURL=create-middleware.d.mts.map