UNPKG

kolenkainc-honohub-react

Version:

React admin panel for honohub

17 lines (16 loc) 496 B
import "./main.css"; import type { CollectionType, PluginType } from "./types"; export type HonoHub = { basePath: string; serverUrl: string; plugins?: PluginType; collections: CollectionType[]; stats: { version: string; hono: string; collections: number; plugins: number; routes: number; }; }; export declare function HonoHub({ plugins, basePath, collections, serverUrl, stats, }: HonoHub): import("react/jsx-runtime").JSX.Element;