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.

10 lines (9 loc) 282 B
import { Context, TezX } from "tezx"; export type Tab = "cookies" | "routes" | ".env" | "middlewares"; export type TabType = { doc_title: string; label: string; tab: Tab | string; content: string; }[]; export declare function html(ctx: Context, app: TezX): TabType;