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.

23 lines 737 B
/** * @fileoverview Focus Mode command handler (unspecd exec) * * This command starts the development server in Focus Mode for a single tool file. * It handles both regular tool files and UnspecdUI instances. */ /** * Options for the exec command */ interface ExecCommandOptions { port: number; title?: string; } /** * Handles the exec command for Focus Mode. * Starts the development server with a single tool file as the entry point. * * @param toolFilePath - Path to the tool file to run in Focus Mode * @param options - Command options including port and title */ export declare function execCommand(toolFilePath: string, options: ExecCommandOptions): Promise<void>; export {}; //# sourceMappingURL=exec.d.ts.map