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.

14 lines (13 loc) 312 B
import type { TezX } from "tezx"; export type RouteEntry = { method: string; pattern: string; endpoint: string; appliedMiddlewares: string[]; }; export declare function dumpRoutes(TezX: TezX<any>): { endpoint: string; pattern: string; method: any; appliedMiddlewares: any[]; }[];