/** * Open Dashboard command - opens the Tinybird dashboard in the default browser */ /** * Environment options for opening dashboard */ export type Environment = "cloud" | "local" | "branch"; /** * Open dashboard command options */ export interface OpenDashboardCommandOptions { /** Working directory (defaults to cwd) */ cwd?: string; /** Which environment to open: "cloud", "local", or "branch" */ environment?: Environment; } /** * Result of the open dashboard command */ export interface OpenDashboardCommandResult { /** Whether the operation was successful */ success: boolean; /** The URL that was opened */ url?: string; /** Which environment was opened */ environment?: Environment; /** Whether the browser was opened */ browserOpened?: boolean; /** Error message if failed */ error?: string; } /** * Run the open dashboard command * * @param options - Command options * @returns Result with URL and status */ export declare function runOpenDashboard(options?: OpenDashboardCommandOptions): Promise; //# sourceMappingURL=open-dashboard.d.ts.map