UNPKG

@glyphtek/unspecd

Version:

A declarative UI framework for building internal tools and dashboards with TypeScript. Create interactive tables, forms, and dashboards using simple specifications.

28 lines 859 B
/** * @fileoverview Dashboard Mode command handler (unspecd dev) * * This command discovers tools and starts the development server in Dashboard Mode. * It uses the enhanced discovery system to find tools and generates temporary entry points. */ /** * Options for the dev command */ interface DevCommandOptions { cwd: string; port: number; title?: string; } /** * Handles the dev command for Dashboard Mode. * * This function: * 1. Uses the provided working directory for discovery * 2. Calls discoverTools with the working directory * 3. Generates a temporary entry point file * 4. Starts the dev server with the generated entry point * * @param options - Command options including cwd, port, and title */ export declare function devCommand(options: DevCommandOptions): Promise<void>; export {}; //# sourceMappingURL=dev.d.ts.map