UNPKG

vibetunnel

Version:

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

9 lines (8 loc) 294 B
import { Router } from 'express'; import type { RemoteRegistry } from '../services/remote-registry.js'; interface RemoteRoutesConfig { remoteRegistry: RemoteRegistry | null; isHQMode: boolean; } export declare function createRemoteRoutes(config: RemoteRoutesConfig): Router; export {};