UNPKG

vibetunnel

Version:

Terminal sharing server with web interface - supports macOS, Linux, and headless environments

20 lines (19 loc) 444 B
import { Router } from 'express'; export interface DiscoveredRepository { id: string; path: string; folderName: string; lastModified: string; relativePath: string; gitBranch?: string; } export interface Branch { name: string; current: boolean; remote: boolean; worktree?: string; } /** * Create routes for repository discovery functionality */ export declare function createRepositoryRoutes(): Router;