@promptbook/browser
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
18 lines (17 loc) • 660 B
TypeScript
import type { ServerInfo } from './types';
/**
* Renders the full HTML document for the Promptbook Server UI.
*
* This component provides the root structure of the server information page,
* including necessary meta tags, Tailwind CSS styling, and the server details body.
*
* @param props - Contains server information such as versions, port, and pipelines
* @private internal utility of Remote Server
*/
export declare function HtmlDoc({ info }: {
info: ServerInfo;
}): import("react/jsx-runtime").JSX.Element;
/**
* Add Note: [💞] Ignore a discrepancy between file name and entity name
* <- TODO: !!! Maybe split into multiple files
*/