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) 273 B
import type { TezX } from "tezx"; export type MiddlewareEntry = { pattern: string; type: "static" | "wildcard" | "optional params" | "dynamic params"; appliedMiddlewares: string[]; }; export declare function dumpMiddlewares(TezX: TezX<any>): MiddlewareEntry[];