UNPKG

@tezx/devtools

Version:

Developer tools for the TezX framework, including route inspector, cookie manager, and real-time diagnostics. Lightweight and plug-and-play compatible with Node.js, Bun, and Deno.

8 lines (7 loc) 270 B
import { Context, TezX } from "tezx"; export type MiddlewareEntry = { pattern: string; type: "static" | "wildcard" | "optional params" | "dynamic params"; appliedMiddlewares: string[]; }; export declare function Middlewares(ctx: Context, app: TezX): string;