UNPKG

@busy-hour/blaze

Version:

<h1 align='center'>🔥 Blaze</h1> <div align='center'> An event driven framework for 🔥 Hono.js </div>

11 lines (10 loc) • 337 B
import type { Blaze } from '../router/index'; export interface RouteData { path: string; method: string; name: string; isMiddleware: boolean; } export declare function getRouterName(app: Blaze): string; export declare function showRoutes(app: Blaze): void; export declare function inspectRoutes(app: Blaze): RouteData[];